diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/common_structs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/common_structs.h b/include/common_structs.h index 7bab26f8e..032f0874a 100644 --- a/include/common_structs.h +++ b/include/common_structs.h @@ -20,12 +20,16 @@ typedef struct { /* 0x8 */ f32 z; } Vec3f; // size = 0xC +typedef f32 Vec3fa[3]; + typedef struct { /* 0x0 */ s16 x; /* 0x2 */ s16 y; /* 0x4 */ s16 z; } Vec3s; // size = 0x6; +typedef s16 Vec3sa[3]; + typedef s32 Vec3iu[3]; typedef u16 Vec3su[3]; |
