#pragma once #include "recastnavigation/Detour/Include/DetourNavMeshQuery.h" namespace Nav { class NavMesh { public: static std::shared_ptr Load(const std::filesystem::path& path); std::shared_ptr GetQuery() const; private: std::shared_ptr m_navMesh; std::shared_ptr m_navMeshQuery; }; }