Beispiel #1
0
 private void RetryButtonHandler(object sender, EventArgs e) //кнопка повторного запуска игры
 {
     //скрытие всех лишних элементов формы
     GameOverLabel.Hide();
     RetryButton.Hide();
     ExitButton.Hide();
     MartianBattleLabel.Hide();
     PointsLabel.Hide();
     NumbersOfLives.Value = 100;
     m_endMusic.Stop();
     m_gameMusic.PlayLooping();
     m_controlGame.StartGame(); //повторный запуск игры
 }
Beispiel #2
0
 private void StartGameButtonHandler(object sender, EventArgs e) //кнопка для начала игры
 {
     //скрытие всех начальных элементов формы
     StartGameButton.Hide();
     Ship1.Hide();
     Ship2.Hide();
     Ship3.Hide();
     Ship4.Hide();
     Ship5.Hide();
     Ship6.Hide();
     MartianBattleLabel.Hide();
     //определение управляющего объекта
     m_controlGame = new Controller(this, NumbersOfLives, Platform, new TextBox[] { Ship1, Ship2, Ship3, Ship4, Ship5, Ship6 });
     m_controlGame.StartGame(); //запуск игры
 }