mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
14 lines
243 B
C++
14 lines
243 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_SHAREDNAVMESH_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_SHAREDNAVMESH_H
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
class dtNavMesh;
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
using NavMeshPtr = std::shared_ptr<dtNavMesh>;
|
||
|
}
|
||
|
|
||
|
#endif
|