public MessageWindow(CheatModController cheatController) : base(cheatController) { windowName = "Cheat Mod Message"; drawCloseButton = false; WindowRect = new Rect(Screen.width / 2 - 100, Screen.height / 2 - 50, 200, 50); }
public WeatherWindow(CheatModController cheatController) : base(cheatController) { windowName = "Cheat Mod Weather And Time Control"; WindowRect = new Rect(620, 20, 400, 200); }
public ConfirmWindow(CheatModController cheatController) : base(cheatController) { windowName = "Are you sure?"; drawCloseButton = false; WindowRect = new Rect(Screen.width / 2 - 100, Screen.height / 2 - 50, 200, 100); }
public MainWindow(CheatModController cheatController) : base(cheatController){ windowName = "Cheat Mod"; WindowRect = new Rect(20, 20, 700, 200); }
public CMWindow(CheatModController controller) { _id = WindowIdManager.GetWindowId(); _controller = controller; }
public AdvancedWindow(CheatModController cheatController) : base(cheatController) { windowName = "Advanced Cheat Mod"; WindowRect = new Rect(620, 20, 400, 200); }
public GlobalToggles(CheatModController cheatController) : base(cheatController) { windowName = "Debug Toggles"; drawCloseButton = true; WindowRect = new Rect(620, 20, 400, 200); }