Example #1
0
 /// <summary>
 /// Method called both externally when the 'Fire!' button is clicked.
 ///
 /// Author John Santias and Hoang Nguyen October 2017
 /// </summary>
 public void Attack()
 {
     currentControlledTank = currentGame.GetCurrentGameplayTank();
     currentControlledTank.Attack();
     controlPanel.Enabled = false;
     formTimer.Enabled    = true;
 }