Console client: Display chat messages.

This commit is contained in:
lotodore
2008-12-26 20:01:25 +00:00
parent 6f9129818c
commit 52fc37a8b7
6 changed files with 91 additions and 0 deletions
+4
View File
@@ -144,6 +144,7 @@ namespace pokerth_lib
BestHandPos4,
BestHandPos5,
CardsValue,
ChatText,
}
public enum ListPropType
@@ -221,6 +222,9 @@ namespace pokerth_lib
case NetTypeEndOfGame :
tmpPacket = new NetPacketEndOfGame(size, reader);
break;
case NetTypeChatText :
tmpPacket = new NetPacketChatText(size, reader);
break;
case NetTypeError :
tmpPacket = new NetPacketError(size, reader);
break;