예제 #1
0
파일: Game.cs 프로젝트: anne574d/Ludo-spil
 private void checkIfDone(Player player)
 {
     if (player.IsDone())
     {
         gameOver = true;
         gui.ShowEndScreen(player);
     }
 }