Playvoi/Playvoi.Client/Assets/ShiroginSDK/Runtime/Modules/Events/Domains/Theme.cs

21 lines
No EOL
444 B
C#

using System;
namespace ShiroginSDK.Runtime.Modules.Events
{
public static partial class ShiroginEvents
{
public static class Theme
{
[Serializable]
public class ThemeChanged
{
public string ThemeName;
public ThemeChanged(string themeName)
{
ThemeName = themeName;
}
}
}
}
}