Console client: Show cards and result at end of hand. All-in still not working.

This commit is contained in:
lotodore
2008-12-25 16:46:38 +00:00
parent 6797fa3f54
commit 4e6b9d9357
9 changed files with 278 additions and 5 deletions
+9
View File
@@ -137,6 +137,12 @@ namespace pokerth_lib
TurnCard,
RiverCard,
MoneyWon,
BestHandPos1,
BestHandPos2,
BestHandPos3,
BestHandPos4,
BestHandPos5,
CardsValue,
}
public enum ListPropType
@@ -195,6 +201,9 @@ namespace pokerth_lib
case NetTypeDealRiverCard :
tmpPacket = new NetPacketDealRiverCard(size, reader);
break;
case NetTypeEndOfHandShowCards :
tmpPacket = new NetPacketEndOfHandShowCards(size, reader);
break;
case NetTypeEndOfHandHideCards :
tmpPacket = new NetPacketEndOfHandHideCards(size, reader);
break;