Partial rewrite of server_application.cpp

I've also fixed some other issues along the way. However, the next step
requires support for multiple rooms. Finally.
This commit is contained in:
Kayne Ruse
2014-06-07 01:14:54 +10:00
parent 170096b5db
commit cac273da5e
7 changed files with 131 additions and 131 deletions
+5 -5
View File
@@ -34,11 +34,11 @@ public:
~AccountManager();
//public access methods
int CreateUserAccount(std::string username, int clientIndex);
int LoadUserAccount(std::string username, int clientIndex);
int SaveUserAccount(int uid);
void UnloadUserAccount(int uid);
void DeleteUserAccount(int uid);
int CreateAccount(std::string username, int clientIndex);
int LoadAccount(std::string username, int clientIndex);
int SaveAccount(int uid);
void UnloadAccount(int uid);
void DeleteAccount(int uid);
//accessors and mutators
AccountData* GetAccount(int uid);