mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
24 lines
373 B
C++
24 lines
373 B
C++
|
#ifndef OPENMW_COMPONENTS_SCENEUTIL_NAVMESH_H
|
||
|
#define OPENMW_COMPONENTS_SCENEUTIL_NAVMESH_H
|
||
|
|
||
|
#include <osg/ref_ptr>
|
||
|
|
||
|
class dtNavMesh;
|
||
|
|
||
|
namespace osg
|
||
|
{
|
||
|
class Group;
|
||
|
}
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct Settings;
|
||
|
}
|
||
|
|
||
|
namespace SceneUtil
|
||
|
{
|
||
|
osg::ref_ptr<osg::Group> createNavMeshGroup(const dtNavMesh& navMesh, const DetourNavigator::Settings& settings);
|
||
|
}
|
||
|
|
||
|
#endif
|