mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
Implemented room description display (map/template name)
This commit is contained in:
@@ -34,6 +34,7 @@ class LobbyDatabase
|
||||
SQLiteStatementPtr setAccountOnlineStatement;
|
||||
SQLiteStatementPtr setGameRoomStatusStatement;
|
||||
SQLiteStatementPtr updateAccountLoginTimeStatement;
|
||||
SQLiteStatementPtr updateRoomDescriptionStatement;
|
||||
|
||||
SQLiteStatementPtr getRecentMessageHistoryStatement;
|
||||
SQLiteStatementPtr getIdleGameRoomStatement;
|
||||
@@ -75,6 +76,7 @@ public:
|
||||
void insertChatMessage(const std::string & sender, const std::string & roomType, const std::string & roomID, const std::string & messageText);
|
||||
|
||||
void updateAccountLoginTime(const std::string & accountID);
|
||||
void updateRoomDescription(const std::string & gameRoomID, const std::string & description);
|
||||
|
||||
std::vector<LobbyGameRoom> getActiveGameRooms();
|
||||
std::vector<LobbyAccount> getActiveAccounts();
|
||||
|
||||
Reference in New Issue
Block a user