mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 19:27:44 +02: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();
|
|
}
|
|
}
|
|
}
|