Exemple #1
0
 public static void EndGame(bool Win)
 {
     if (Win)
     {
         DelayManager.StopAll();
         // Autres animations
         Scenes.Load("GameWin");
     }
     else
     {
         DelayManager.StopAll();
         // Autres animations
         Scenes.Load("GameOver");
     }
 }