mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
C++
24 lines
373 B
C++
7 years ago
|
#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
|