1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/tools/ZAPD/ZAPDUtils/Vec3f.h

21 lines
185 B
C
Raw Normal View History

#pragma once
#include <cstdint>
struct Vec3f
{
float x, y, z;
Vec3f()
{
x = 0;
y = 0;
z = 0;
};
Vec3f(float nX, float nY, float nZ)
{
x = nX;
y = nY;
z = nZ;
};
};