1
This commit is contained in:
parent
dab90d5b7c
commit
9cc1da5fc5
@ -11,3 +11,8 @@ void CustomBattle::UnInit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CustomBattle::ParseResult(a8::XObject& obj)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ class CustomBattle
|
||||
void Init();
|
||||
void UnInit();
|
||||
|
||||
bool GetParseOk() { return parse_ok_; }
|
||||
Room* GetRoom() { return room_; }
|
||||
const std::string& GetRoomId() { return room_id_; }
|
||||
const std::string& GetRoomUuid() { return room_uuid_; }
|
||||
@ -17,8 +18,10 @@ class CustomBattle
|
||||
int GetZoneId() { return zone_id_; }
|
||||
int GetNodeId() { return zone_id_; }
|
||||
int GetStartTime() { return start_time_; }
|
||||
void ParseResult(a8::XObject& obj);
|
||||
|
||||
private:
|
||||
bool parse_ok_ = false;
|
||||
Room *room_ = nullptr;
|
||||
std::string room_id_;
|
||||
std::string room_uuid_;
|
||||
|
Loading…
x
Reference in New Issue
Block a user