Add back ThemeManager.cs common, pls pass the format check

This commit is contained in:
yell0wsuit 2024-04-07 10:48:02 +07:00
parent b02c52a8a7
commit 8113901896
No known key found for this signature in database
GPG key ID: 5B4F198A9800F6F4

View file

@ -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);
}
}
}