Console client: Show flop/turn/river cards.

This commit is contained in:
lotodore
2008-12-23 23:29:18 +00:00
parent 660168b8aa
commit 60fd3e2010
27 changed files with 361 additions and 178 deletions
+14
View File
@@ -131,6 +131,11 @@ namespace pokerth_lib
HighestSet,
MinimumRaise,
ActionRejectReason,
FlopFirstCard,
FlopSecondCard,
FlopThirdCard,
TurnCard,
RiverCard,
}
public enum ListPropType
@@ -175,6 +180,15 @@ namespace pokerth_lib
case NetTypePlayersActionDone :
tmpPacket = new NetPacketPlayersActionDone(size, reader);
break;
case NetTypeDealFlopCards :
tmpPacket = new NetPacketDealFlopCards(size, reader);
break;
case NetTypeDealTurnCard :
tmpPacket = new NetPacketDealTurnCard(size, reader);
break;
case NetTypeDealRiverCard :
tmpPacket = new NetPacketDealRiverCard(size, reader);
break;
default:
break;
}