11 lines
No EOL
312 B
C#
11 lines
No EOL
312 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ShiroginSDK.Runtime.Modules.Data.Scripts
|
|
{
|
|
public class ThemeData : BaseData
|
|
{
|
|
public string ActiveTheme = "Default";
|
|
public List<string> UnlockedThemes = new() { "Default" };
|
|
protected override string PrefsKey => "THEME_DATA";
|
|
}
|
|
} |