mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
25 lines
501 B
C++
25 lines
501 B
C++
#ifndef OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
|
|
#define OPENMW_COMPONENTS_SCENEUTIL_RECASTMESH_H
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
namespace osg
|
|
{
|
|
class Group;
|
|
class StateSet;
|
|
}
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
class RecastMesh;
|
|
struct RecastSettings;
|
|
}
|
|
|
|
namespace SceneUtil
|
|
{
|
|
osg::ref_ptr<osg::Group> createRecastMeshGroup(const DetourNavigator::RecastMesh& recastMesh,
|
|
const DetourNavigator::RecastSettings& settings, const osg::ref_ptr<osg::StateSet>& debugDrawStateSet);
|
|
}
|
|
|
|
#endif
|