This commit is contained in:
aozhiwei 2020-06-28 17:06:17 +08:00
parent 85d2769ac0
commit e1448e9e2a
2 changed files with 12 additions and 0 deletions

View File

@ -26,6 +26,16 @@ void GameLog::Logout(Player* hum)
}
void GameLog::FriendApply(Player* hum, const std::string& account_id)
{
}
void GameLog::FriendRefuse(Player* hum, const std::string& account_id)
{
}
void GameLog::FriendAgree(Player* hum, const std::string& account_id)
{

View File

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