mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
24 lines
415 B
C++
24 lines
415 B
C++
|
#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 Settings;
|
||
|
}
|
||
|
|
||
|
namespace SceneUtil
|
||
|
{
|
||
|
osg::ref_ptr<osg::Group> createRecastMeshGroup(const DetourNavigator::RecastMesh& recastMesh,
|
||
|
const DetourNavigator::Settings& settings);
|
||
|
}
|
||
|
|
||
|
#endif
|