This commit is contained in:
aozhiwei 2023-09-16 16:15:11 +08:00
parent f9226a6c39
commit 899d3220d1

View File

@ -1,11 +1,14 @@
#pragma once
struct BattleDataContext;
class CustomMember
{
public:
const std::string& GetAccountId() { return account_id_; }
std::shared_ptr<BattleDataContext>& GetBattleContext() { return battle_context_; };
private:
std::string account_id_;
std::shared_ptr<BattleDataContext> battle_context_;
};