mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-13 03:07:30 +08:00
[+] able to switch off WindowState
This commit is contained in:
@@ -11,6 +11,7 @@ namespace AquaMai
|
||||
public FixConfig Fix { get; set; } = new();
|
||||
public UtilsConfig Utils { get; set; } = new();
|
||||
public TimeSavingConfig TimeSaving { get; set; } = new();
|
||||
public WindowStateConfig WindowState { get; set; } = new();
|
||||
public TouchSensitivityConfig TouchSensitivity { get; set; } = new();
|
||||
|
||||
public class CheatConfig
|
||||
@@ -57,9 +58,6 @@ namespace AquaMai
|
||||
public float JudgeAdjustA { get; set; }
|
||||
public float JudgeAdjustB { get; set; }
|
||||
public int TouchDelay { get; set; }
|
||||
public bool Windowed { get; set; }
|
||||
public int Width { get; set; }
|
||||
public int Height { get; set; }
|
||||
public bool PractiseMode { get; set; }
|
||||
public bool SelectionDetail { get; set; }
|
||||
public bool ShowNetErrorDetail { get; set; }
|
||||
@@ -76,6 +74,14 @@ namespace AquaMai
|
||||
public bool SkipTrackStart { get; set; }
|
||||
}
|
||||
|
||||
public class WindowStateConfig
|
||||
{
|
||||
public bool Enable { get; set; }
|
||||
public bool Windowed { get; set; }
|
||||
public int Width { get; set; }
|
||||
public int Height { get; set; }
|
||||
}
|
||||
|
||||
public class TouchSensitivityConfig
|
||||
{
|
||||
public bool Enable { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user