summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSonic Dreamcaster <alejandro.asenjo88@gmail.com>2025-05-17 20:33:28 -0300
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2025-05-17 20:33:28 -0300
commit3b2efbb81ae7020d2bccb0b7a15a4f5eb14b1f63 (patch)
treebbbc6c2a465c9e9e2eb5ecfef70a29d471b182b2 /include
parentd52831e4ba9de27fdc70cd824a81f812011b81ce (diff)
Diffstat (limited to 'include')
-rw-r--r--include/common_structs.h4
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];