Esempio n. 1
0
 //Switches to the other catapult's turn
 public void NextTurn()
 {
     if (otherCatapult == null)
     {
         CommenceTurn();
     }
     else
     {
         otherCatapult.CommenceTurn();
     }
 }