/// <summary> /// Checks if game is over /// </summary> /// <param name="gs">The current game state</param> /// <returns>If the game is over</returns> public bool IsGameOver(GameState gs) { PCModel pcm = gs.GetPCM(); return(pcm.IsGameOver()); }