Exemplo n.º 1
0
		public Match(int round)
		{
			Round = round;
			Player1 = new PlayerState(PlayerName.player1);
			Player2 = new PlayerState(PlayerName.player2);
			Table = Cards.Empty;
		}
		public int GetAmountToCall(PlayerState other)
		{
			if (other.Pot > Pot)
			{
				return other.Pot - Pot;
			}
			return 0;
		}