Recast: fix compile error

Editor::loadNavMesh was never declared in the class.
This commit is contained in:
Kawe Mazidjatari 2024-07-31 22:38:02 +02:00
parent 51e18d5462
commit 2dcc849e2d

View File

@ -181,6 +181,8 @@ public:
bool loadAll(std::string path, const bool fullPath = false);
void saveAll(std::string path, const dtNavMesh* mesh);
bool loadNavMesh(const char* path, const bool fullPath = false);
void setContext(BuildContext* ctx) { m_ctx = ctx; }