Пример #1
0
 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);
 }
Пример #2
0
 public WeatherWindow(CheatModController cheatController) : base(cheatController) {
     windowName = "Cheat Mod Weather And Time Control";
     WindowRect = new Rect(620, 20, 400, 200);
 }
Пример #3
0
 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);
 }
Пример #4
0
 public MainWindow(CheatModController cheatController) : base(cheatController){
     windowName = "Cheat Mod";
     WindowRect = new Rect(20, 20, 700, 200);
 }
Пример #5
0
 public CMWindow(CheatModController controller)
 {       
     _id = WindowIdManager.GetWindowId();
     _controller = controller;
 }
Пример #6
0
 public AdvancedWindow(CheatModController cheatController) : base(cheatController) {
     
     windowName = "Advanced Cheat Mod";
     WindowRect = new Rect(620, 20, 400, 200);
 }
Пример #7
0
        public GlobalToggles(CheatModController cheatController) : base(cheatController) {

            windowName = "Debug Toggles";
            drawCloseButton = true;
            WindowRect = new Rect(620, 20, 400, 200);
        }