public boolean isGameStarted(String gameName) {
   return isGameExists() && game.GetName().compareTo(gameName) == 0 && game.isGameStarted();
 }