openmw/components/sceneutil/pathgridutil.hpp

18 lines
290 B
C++
Raw Normal View History

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