public HackingForm(GameMenu game, IHackingService hackingService) { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MinimizeBox = false; this.MaximizeBox = false; _game = game; this.hackingService = hackingService; container = UnityRegistator.GetContainer(); HackingUpdate(); }
public BssForm(GameMenu game, IBssService bssService) { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MinimizeBox = false; this.MaximizeBox = false; _game = game; this.bssService = bssService; container = UnityRegistator.GetContainer(); if (_game.Bss.MyBssInstaled) { makeMyBss.Enabled = false; } }
public MainForm() { InitializeComponent(); container = UnityRegistator.GetContainer(); this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MinimizeBox = false; this.MaximizeBox = false; gameOnOff = true; _timer = new Timer(TimerTick, null, 0, 1000); game = container.Resolve <GameMenu>(); filePath = null; DataUpdate(); pauseButton.Text = "Pause"; }