This commit is contained in:
Sonic Dreamcaster
2025-05-17 20:33:28 -03:00
parent d52831e4ba
commit 3b2efbb81a
13 changed files with 470 additions and 466 deletions
+4
View File
@@ -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];