openmw/components/sceneutil/recastmesh.hpp

25 lines
501 B
C++
Raw Permalink Normal View History

2019-11-27 23:45:01 +01:00
#ifndef OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
#define OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
#include <osg/ref_ptr>
namespace osg
{
class Group;
class StateSet;
2019-11-27 23:45:01 +01:00
}
namespace DetourNavigator
{
class RecastMesh;
struct RecastSettings;
2019-11-27 23:45:01 +01:00
}
namespace SceneUtil
{
osg::ref_ptr<osg::Group> createRecastMeshGroup(const DetourNavigator::RecastMesh& recastMesh,
const DetourNavigator::RecastSettings& settings, const osg::ref_ptr<osg::StateSet>& debugDrawStateSet);
2019-11-27 23:45:01 +01:00
}
#endif