Exemplo n.º 1
0
 public static void StartGame()
 {
     Menu();
     PlayerStart();
     AIStart();
     GridGeneration.UpdateField();
     GridGenerationAI.UpdateFieldAI();
 }
Exemplo n.º 2
0
 public static void Shoot(int height, int width, char bullet)
 {
     GridGeneration.UpdateField();
     ShootInAI(height, width, bullet);
     if (bullet == '#' && !GameCycle.isgameEnded)
     {
         PlayerInteraction.Attack();
         Logic.wasHittedFromPlayer();
     }
 }