Console client: Print player action.

This commit is contained in:
lotodore
2008-12-23 22:30:02 +00:00
parent 1548598944
commit 660168b8aa
11 changed files with 227 additions and 50 deletions
+11
View File
@@ -35,6 +35,17 @@ namespace pokerth_lib
River
}
public enum Action
{
None = 0,
Fold,
Check,
Call,
Bet,
Raise,
AllIn
}
public Hand(Dictionary<uint, Player> players, uint myPlayerId, uint smallBlind)
{
m_mutex = new Object();