1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 21:04:43 +00:00
oot/include/z64vec.h
2020-04-02 12:44:19 -05:00

23 lines
241 B
C

#ifndef _Z64VEC_H_
#define _Z64VEC_H_
#include <ultra64.h>
typedef struct {
f32 x, y;
} Vec2f;
typedef struct {
f32 x, y, z;
} Vec3f;
typedef struct {
s16 x, y, z;
} Vec3s;
typedef struct {
s32 x, y, z;
} Vec3i;
#endif