mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 18:19:55 +00:00
17 lines
358 B
C++
17 lines
358 B
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_SHAREDNAVMESH_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_SHAREDNAVMESH_H
|
|
|
|
#include <components/misc/guarded.hpp>
|
|
|
|
#include <mutex>
|
|
#include <memory>
|
|
|
|
class dtNavMesh;
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
using NavMeshPtr = std::shared_ptr<dtNavMesh>;
|
|
using SharedNavMesh = Misc::SharedGuarded<dtNavMesh>;
|
|
}
|
|
|
|
#endif
|