This commit is contained in:
aozhiwei 2019-11-21 17:51:32 +08:00
parent 8ea4821d7f
commit 8e278d5817
2 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,11 @@ namespace MetaData
str_val = a8::XValue(p->param_value()).GetString();
}
void Snake::Init()
{
}
void Map::Init()
{
}

View File

@ -16,6 +16,13 @@ namespace MetaData
void Init();
};
struct Snake
{
const metatable::Snake* p = nullptr;
void Init();
};
struct Map
{
const metatable::Map* p = nullptr;