aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/Common/ThemeManager.cs
blob: 8c52c2a66a892cc3a21aa2e2bca05844b74fd49d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
        }
    }
}