1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-29 06:45:34 +00:00
openmw/components/sceneutil/navmesh.hpp
2021-11-21 17:42:27 +01:00

25 lines
432 B
C++

#ifndef OPENMW_COMPONENTS_SCENEUTIL_NAVMESH_H
#define OPENMW_COMPONENTS_SCENEUTIL_NAVMESH_H
#include <osg/ref_ptr>
class dtNavMesh;
struct dtMeshTile;
namespace osg
{
class Group;
}
namespace DetourNavigator
{
struct Settings;
}
namespace SceneUtil
{
osg::ref_ptr<osg::Group> createNavMeshTileGroup(const dtNavMesh& navMesh, const dtMeshTile& meshTile,
const DetourNavigator::Settings& settings);
}
#endif