Esempio n. 1
0
 public bool FoldInGame(string gameName, string playerName)
 {
     try
     {
         _gameManager.Fold(gameName, playerName);
     }
     catch (Exception)
     {
         return(false);
     }
     return(true);
 }