[+] FrameRate lock + display

This commit is contained in:
Clansty
2024-10-02 00:52:37 +08:00
parent 9ead7a413e
commit c15dcf6b98
8 changed files with 233 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ namespace AquaMai
public bool ForceFreePlay { get; set; } = true;
public bool ForcePaidPlay { get; set; }
public int ExtendNotesPool { get; set; }
public bool FrameRateLock { get; set; }
}
public class UtilsConfig
@@ -61,6 +62,7 @@ namespace AquaMai
public bool PractiseMode { get; set; }
public bool SelectionDetail { get; set; }
public bool ShowNetErrorDetail { get; set; }
public bool FrameRateDisplay { get; set; }
}
public class TimeSavingConfig
@@ -120,5 +122,11 @@ namespace AquaMai
public byte E7 { get; set; } = 20;
public byte E8 { get; set; } = 20;
}
public class CustomKeyMapConfig
{
public bool Enable { get; set; }
public string[] KeyMap { get; set; } = new string[0];
}
}
}