Every move of a player is stored in new instance of
MoveFromPlayer class. Among others, the type of the move is stored using this enumeration.
You can retrieve all moves from a player by using the
DoneMoves property.
Namespace: Potbot.EnumsAssembly: PotBot (in PotBot.exe) Version: 0.9.0.1 (0.9.0.1)
SyntaxPublic Enumeration TypeOfMove
Members
| Member name | Value | Description |
---|
| Fold | -1 |
Move was a fold.
|
| None | 0 |
This should not happen
|
| Calll | 1 |
Move was a call. Since 'call' is a reserved word 3 l's are used.
|
| Check | 2 |
Move was a check.
|
| Raise | 3 |
Move was a bet/raise.
|
| Reraise | 4 |
Move was a reraise.
|
| PostSb | 5 |
Move was posting the small blind.
|
| PostBb | 6 |
Move was posting the big blind.
|
See Also