You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
509 B
C++
27 lines
509 B
C++
7 years ago
|
#ifndef OPENMW_COMPONENTS_SCENEUTIL_AGENTPATH_H
|
||
|
#define OPENMW_COMPONENTS_SCENEUTIL_AGENTPATH_H
|
||
|
|
||
|
#include <osg/ref_ptr>
|
||
|
|
||
|
#include <deque>
|
||
|
|
||
|
namespace osg
|
||
|
{
|
||
|
class Group;
|
||
|
class Vec3f;
|
||
|
}
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct Settings;
|
||
|
}
|
||
|
|
||
|
namespace SceneUtil
|
||
|
{
|
||
|
osg::ref_ptr<osg::Group> createAgentPathGroup(const std::deque<osg::Vec3f>& path,
|
||
|
const osg::Vec3f& halfExtents, const osg::Vec3f& start, const osg::Vec3f& end,
|
||
|
const DetourNavigator::Settings& settings);
|
||
|
}
|
||
|
|
||
|
#endif
|