This commit is contained in:
aozhiwei 2020-06-24 19:43:10 +08:00
parent 82d24a533c
commit 89c4a00cfe
2 changed files with 13 additions and 0 deletions

View File

@ -25,3 +25,13 @@ void GameLog::Logout(Player* hum)
{
}
void GameLog::FriendAgree(Player* hum, const std::string& account_id)
{
}
void GameLog::FriendDelete(Player* hum, const std::string& account_id)
{
}

View File

@ -14,6 +14,9 @@ class GameLog : public a8::Singleton<GameLog>
void Login(Player* hum);
void Logout(Player* hum);
void FriendAgree(Player* hum, const std::string& account_id);
void FriendDelete(Player* hum, const std::string& account_id);
private:
};