15 lines
247 B
C#
15 lines
247 B
C#
using System;
|
|
|
|
namespace Ryujinx.Ava.Common
|
|
{
|
|
public static class ThemeManager
|
|
{
|
|
public static event Action ThemeChanged;
|
|
|
|
public static void OnThemeChanged()
|
|
{
|
|
ThemeChanged?.Invoke();
|
|
}
|
|
}
|
|
}
|