1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-08 09:37:53 +00:00
OpenMW/components/sceneutil/pathgridutil.hpp

18 lines
290 B
C++
Raw Normal View History

2016-05-03 02:09:48 +00:00
#ifndef OPENMW_COMPONENTS_PATHGRIDUTIL_H
#define OPENMW_COMPONENTS_PATHGRIDUTIL_H
#include <osg/ref_ptr>
#include <osg/Geometry>
namespace ESM
{
2016-05-10 15:36:25 +00:00
struct Pathgrid;
2016-05-03 02:09:48 +00:00
}
namespace SceneUtil
{
osg::ref_ptr<osg::Geometry> createPathgridGeometry(const ESM::Pathgrid& pathgrid);
2016-05-03 02:09:48 +00:00
}
#endif