Exemple #1
0
 private static void AICycle()
 {
     AIInteraction.Attack();
     Logic.wasHittedFromAI();
     EndOfGame.IfAIWon();
 }
Exemple #2
0
 private static void PlayerCycle()
 {
     PlayerInteraction.Attack();
     Logic.wasHittedFromPlayer();
     EndOfGame.IfPlayerWon();
 }