15 lines
314 B
C++
15 lines
314 B
C++
#pragma once
|
|
|
|
struct BattleDataContext;
|
|
class CustomMember
|
|
{
|
|
public:
|
|
|
|
const std::string& GetAccountId() { return account_id_; }
|
|
std::shared_ptr<BattleDataContext>& GetNetData() { return battle_context_; };
|
|
|
|
private:
|
|
std::string account_id_;
|
|
std::shared_ptr<BattleDataContext> battle_context_;
|
|
};
|