1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/components/sceneutil/recastmesh.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
428 B
C++
Raw Normal View History

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