/**
  * Rimuove una partita precedentemente creata da un player.
  *
  * @return lista delle partite aggiornata dopo la rimozione
  * @throws MalformedURLException
  * @throws RemoteException
  * @throws NotBoundException
  */
 public ArrayList<String> removeGame()
     throws MalformedURLException, RemoteException, NotBoundException {
   if (creator) return (ArrayList<String>) server.removeGame(idGameCreated);
   else return (ArrayList<String>) server.removeGame(idGameJoined);
 }