mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 01:15:31 +00:00
21 lines
426 B
C++
21 lines
426 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_MAKENAVMESH_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_MAKENAVMESH_H
|
||
|
|
||
|
#include <osg/Vec3f>
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
class dtNavMesh;
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
class RecastMesh;
|
||
|
struct Settings;
|
||
|
|
||
|
using NavMeshPtr = std::shared_ptr<dtNavMesh>;
|
||
|
|
||
|
NavMeshPtr makeNavMesh(const osg::Vec3f& agentHalfExtents, const RecastMesh& recastMesh, const Settings& settings);
|
||
|
}
|
||
|
|
||
|
#endif
|