mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
14 lines
247 B
C#
14 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();
|
|
}
|
|
}
|
|
}
|