[+] Option to disable some useless checks and delays to speedup the game boot process

This commit is contained in:
Clansty
2024-04-08 17:02:14 +08:00
parent 2630d32764
commit 442ec76828
4 changed files with 69 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
{
@@ -19,5 +20,10 @@ namespace AquaMai
public bool SinglePlayer { get; set; }
public bool SkipToMusicSelection { get; set; }
}
public class PerformanceConfig
{
public bool ImproveLoadSpeed { get; set; }
}
}
}