From 8113901896ec6ab51720cf4312e4b43cc844a785 Mon Sep 17 00:00:00 2001 From: yell0wsuit <5692900+yell0wsuit@users.noreply.github.com> Date: Sun, 7 Apr 2024 10:48:02 +0700 Subject: [PATCH] Add back ThemeManager.cs common, pls pass the format check --- src/Ryujinx/Common/ThemeManager.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/Ryujinx/Common/ThemeManager.cs diff --git a/src/Ryujinx/Common/ThemeManager.cs b/src/Ryujinx/Common/ThemeManager.cs new file mode 100644 index 0000000000..8c52c2a66a --- /dev/null +++ b/src/Ryujinx/Common/ThemeManager.cs @@ -0,0 +1,14 @@ +using System; + +namespace Ryujinx.Ava.Common +{ + public static class ThemeManager + { + public static event EventHandler ThemeChanged; + + public static void OnThemeChanged() + { + ThemeChanged?.Invoke(null, EventArgs.Empty); + } + } +}