Esempio n. 1
0
 public static void Shoot(int height, int width, char bullet)
 {
     Console.Clear();
     ShootInPlayer(height, width, bullet);
     GridGenerationAI.UpdateFieldAI();
     if (bullet == '#')
     {
         AIInteraction.Attack();
         Logic.wasHittedFromAI();
     }
 }
Esempio n. 2
0
 private static void AICycle()
 {
     AIInteraction.Attack();
     Logic.wasHittedFromAI();
     EndOfGame.IfAIWon();
 }