Beispiel #1
0
 public bool AskForCards(Player other_player, Faces face)
 {
     // If the other player has a card of the face you're asking for, they must give the card to you
     if (other_player.HasCard(face))
     {
         other_player.GiveCards(this, face);
         return(true);
     }
     return(false);
 }