mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
17 lines
285 B
C++
17 lines
285 B
C++
#ifndef OPENMW_APPS_OPENMW_MWWORLD_POSITIONCELLGRID_H
|
|
#define OPENMW_APPS_OPENMW_MWWORLD_POSITIONCELLGRID_H
|
|
|
|
#include <osg/Vec3f>
|
|
#include <osg/Vec4i>
|
|
|
|
namespace MWWorld
|
|
{
|
|
struct PositionCellGrid
|
|
{
|
|
osg::Vec3f mPosition;
|
|
osg::Vec4i mCellBounds;
|
|
};
|
|
}
|
|
|
|
#endif
|