1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-16 16:10:58 +00:00
OpenMW/components/esm/vector3.hpp

25 lines
448 B
C++
Raw Normal View History

2024-05-02 01:09:13 +00:00
#ifndef OPENMW_COMPONENTS_ESM_VECTOR3_H
#define OPENMW_COMPONENTS_ESM_VECTOR3_H
#include <osg/Vec3f>
namespace ESM
{
// format 0, savegames only
struct Vector3
{
float mValues[3];
Vector3() = default;
Vector3(const osg::Vec3f& v)
: mValues{ v.x(), v.y(), v.z() }
{
}
operator osg::Vec3f() const { return osg::Vec3f(mValues[0], mValues[1], mValues[2]); }
};
}
#endif