This commit is contained in:
aozhiwei 2023-01-31 14:26:36 +08:00
parent 6364b0e9dc
commit dc1b5a00e8
2 changed files with 14 additions and 0 deletions

View File

@ -745,6 +745,13 @@ void MapInstance::LoadHeightData()
}
}
{
for (auto& itr : list.datas()) {
for (auto& itr2 : itr.infos()) {
}
}
}
free(p);
fclose(fp);
}

View File

@ -11,6 +11,13 @@ struct HeightInfo
int h = 0;
};
struct GridInfo
{
bool is_perfect = false;
HeightInfo* layers = nullptr;
HeightInfo* details = nullptr;
};
class Entity;
class Obstacle;
class MapService;