mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 02:21:11 -04:00
18 lines
289 B
C++
18 lines
289 B
C++
#ifndef OPENMW_COMPONENTS_PATHGRIDUTIL_H
|
|
#define OPENMW_COMPONENTS_PATHGRIDUTIL_H
|
|
|
|
#include <osg/ref_ptr>
|
|
#include <osg/Geometry>
|
|
|
|
namespace ESM
|
|
{
|
|
class Pathgrid;
|
|
}
|
|
|
|
namespace SceneUtil
|
|
{
|
|
osg::ref_ptr<osg::Geometry> createPathgridGeometry(const ESM::Pathgrid& pathgrid);
|
|
}
|
|
|
|
#endif
|