AquaDX/AquaMai/Config.cs

16 lines
387 B
C#
Raw Normal View History

2024-02-07 15:38:36 +08:00
using System.Diagnostics.CodeAnalysis;
namespace AquaMai
{
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
public class Config
{
public UXConfig UX { get; set; }
public class UXConfig
{
public bool SkipWarningScreen { get; set; }
2024-02-07 16:53:13 +08:00
public bool SinglePlayer { get; set; }
2024-02-07 15:38:36 +08:00
}
}
}