mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 14:49:56 +00:00
15 lines
256 B
C++
15 lines
256 B
C++
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_TILEBOUNDS_H
|
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_TILEBOUNDS_H
|
|
|
|
#include <osg/Vec2f>
|
|
|
|
namespace DetourNavigator
|
|
{
|
|
struct TileBounds
|
|
{
|
|
osg::Vec2f mMin;
|
|
osg::Vec2f mMax;
|
|
};
|
|
}
|
|
|
|
#endif
|