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(); } } }
public static void Shoot(int height, int width, char bullet) { GridGeneration.UpdateField(); UnlockShot(height, width, bullet); if (bullet == '#' && !GameCycle.isgameEnded) { EndOfGame.IfPlayerWon(); if (GameCycle.isgameEnded) { GameCycle.GameProcess(); } else { PlayerInteraction.Attack(); Logic.wasHitFromPlayer(); } } }
private static void PlayerCycle() { PlayerInteraction.Attack(); Logic.wasHitFromPlayer(); EndOfGame.IfPlayerWon(); }