Merge branch 'v1-dev' into feat/CustomVersionString

This commit is contained in:
凌莞~(=^▽^=)
2024-04-11 03:20:12 +08:00
committed by GitHub
4 changed files with 70 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ namespace AquaMai
{
public UXConfig UX { get; set; }
public CheatConfig Cheat { get; set; }
public PerformanceConfig Performance { get; set; }
public class CheatConfig
{
@@ -20,5 +21,10 @@ namespace AquaMai
public bool SkipToMusicSelection { get; set; }
public string CustomVersionString { get; set; }
}
public class PerformanceConfig
{
public bool ImproveLoadSpeed { get; set; }
}
}
}