Exemplo n.º 1
0
 private void GameForm_Load(object sender, EventArgs e)
 {
     modeLabel.Text = Kind.ToString();
     lvlLabel.Text = Difficulty.ToString();
     playerPictureBox.Image = FightClub.Properties.Resources.fight;
     botPictureBox.Image = FightClub.Properties.Resources.bot;
     _presenter = new Presenter(this);
     _presenter.Difficulty();
     PlayerOptions.PlayerName = _presenter.PlayerName();
     PlayerOptions.BotName = _presenter.BotName();
     RestartBtn.Visible = false;
     ExchangePb();
     UpdateHp();
 }
Exemplo n.º 2
0
 public void SetUp()
 {
     mockGame = GetMock();
        player = new Player();
        presenter = new Presenter(mockGame, player);
 }