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; }
|
2024-02-07 18:16:07 +08:00
|
|
|
public CheatConfig Cheat { get; set; }
|
2024-04-08 17:02:14 +08:00
|
|
|
public PerformanceConfig Performance { get; set; }
|
2024-02-07 18:21:46 +08:00
|
|
|
|
2024-02-07 18:16:07 +08:00
|
|
|
public class CheatConfig
|
|
|
|
{
|
|
|
|
public bool TicketUnlock { get; set; }
|
|
|
|
}
|
2024-02-07 18:21:46 +08:00
|
|
|
|
2024-02-07 15:38:36 +08:00
|
|
|
public class UXConfig
|
|
|
|
{
|
|
|
|
public bool SkipWarningScreen { get; set; }
|
2024-02-07 16:53:13 +08:00
|
|
|
public bool SinglePlayer { get; set; }
|
2024-02-07 18:16:24 +08:00
|
|
|
public bool SkipToMusicSelection { get; set; }
|
2024-04-22 20:58:01 +08:00
|
|
|
public bool LoadJacketPng { get; set; }
|
2024-04-23 18:51:49 +08:00
|
|
|
public bool LoadAssetBundleWithoutManifest { get; set; }
|
2024-04-23 17:34:37 +08:00
|
|
|
public bool QuickSkip { get; set; }
|
2024-04-08 14:59:54 +08:00
|
|
|
public string CustomVersionString { get; set; }
|
2024-02-07 15:38:36 +08:00
|
|
|
}
|
2024-04-08 17:02:14 +08:00
|
|
|
|
|
|
|
public class PerformanceConfig
|
|
|
|
{
|
|
|
|
public bool ImproveLoadSpeed { get; set; }
|
|
|
|
}
|
2024-02-07 15:38:36 +08:00
|
|
|
}
|
2024-02-07 18:21:46 +08:00
|
|
|
}
|