mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 12:20:41 +00:00
16 lines
279 B
C++
16 lines
279 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_OFFMESHCONNECTION_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_OFFMESHCONNECTION_H
|
||
|
|
||
|
#include <osg/Vec3f>
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct OffMeshConnection
|
||
|
{
|
||
|
osg::Vec3f mStart;
|
||
|
osg::Vec3f mEnd;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|