Click or drag to resize
TypeOfMove Enumeration
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.Enums
Assembly: PotBot (in PotBot.exe) Version: 0.9.0.1 (0.9.0.1)
Syntax
public enum TypeOfMove
Members
  Member nameValueDescription
Fold-1 Move was a fold.
None0 This should not happen
Calll1 Move was a call. Since 'call' is a reserved word 3 l's are used.
Check2 Move was a check.
Raise3 Move was a bet/raise.
Reraise4 Move was a reraise.
PostSb5 Move was posting the small blind.
PostBb6 Move was posting the big blind.
See Also