Method | Description | |
---|---|---|
Add ( double amount ) : void |
Adds money to the pot.
|
|
AddPlayer ( int playerIdx, double amount ) : void |
Adds a player to the pot.
|
|
GetWinners ( uint handStrengths, List |
Gets the winners of this pot according to the given dictionary of players' hand strengths. Winners are added to the winner list.
|
|
Pot ( string potName, |
Creates a new, empty Pot with the given name.
|
|
RemovePlayer ( int playerIdx ) : void |
Removes a player from this pot, but keeps his money in there.
|
public AddPlayer ( int playerIdx, double amount ) : void | ||
playerIdx | int | |
amount | double | |
return | void |
public GetWinners ( uint handStrengths, List |
||
handStrengths | uint | An array of player hand strengths at showdown |
winners | List |
A list of winners to which to add the winners of this pot. |
return | void |
public Pot ( string potName, |
||
potName | string | |
players | ||
return | System |