1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-03 12:45:36 +00:00
openmw-tes3mp/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