Console client: Adding support for additional network packets (avatar handling). This is not specifically for use in the console, but for .NET based test cases.

This commit is contained in:
lotodore
2009-01-11 11:18:51 +00:00
parent d72cdb6873
commit 4f7cf0bdb2
11 changed files with 405 additions and 0 deletions
+3
View File
@@ -48,5 +48,8 @@ namespace pokerth_lib
void RemovedFromGame();
void ChatText(string name, string message);
void Error(string message);
void AvatarBegin(uint id, uint fileSize, GameInfo.AvatarFileType type);
void AvatarData(uint id, byte[] block);
void AvatarEnd(uint id);
}
}