diff --git a/server/gameserver/custom_member.h b/server/gameserver/custom_member.h index b17d4f51..6d22551c 100644 --- a/server/gameserver/custom_member.h +++ b/server/gameserver/custom_member.h @@ -1,11 +1,14 @@ #pragma once +struct BattleDataContext; class CustomMember { public: const std::string& GetAccountId() { return account_id_; } + std::shared_ptr& GetBattleContext() { return battle_context_; }; private: std::string account_id_; + std::shared_ptr battle_context_; };