mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-29 09:15:35 +00:00
14ae232938
It was originally used for storing normals, but that functionality was removed.
17 lines
289 B
C++
17 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
|