Example #1
0
 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();
 }
Example #2
0
 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;
     }
 }
Example #3
0
        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";
        }