Implementing player list for new lobby chat.

This commit is contained in:
lotodore
2009-08-15 22:20:19 +00:00
parent 51d8883e88
commit a380497bc2
6 changed files with 48 additions and 8 deletions
+4
View File
@@ -66,6 +66,10 @@ public:
virtual void SignalNetClientServerListClear() =0;
virtual void SignalNetClientServerListShow() =0;
virtual void SignalLobbyPlayerJoined(unsigned playerId, const std::string &nickName) = 0;
virtual void SignalLobbyPlayerKicked(const std::string &nickName, const std::string &byWhom, const std::string &reason) = 0;
virtual void SignalLobbyPlayerLeft(unsigned playerId) = 0;
};
#endif