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