En_Tanron5 (#653)

* En_Tanron5

* Stuff

* PR

* Fix

* Use x/z instead of x/y

* BSS

* Merge

* bss
This commit is contained in:
Maide
2022-03-26 01:19:14 +00:00
committed by GitHub
parent 863d6b9378
commit 10995051e0
13 changed files with 528 additions and 46 deletions
+6 -1
View File
@@ -5,9 +5,14 @@
#define VEC_SET(V,X,Y,Z) V.x=X;V.y=Y;V.z=Z
typedef struct {
/* 0x00 */ s16 x;
/* 0x02 */ s16 z;
} Vec2s; // size = 0x04
typedef struct {
/* 0x00 */ f32 x;
/* 0x04 */ f32 y;
/* 0x04 */ f32 z;
} Vec2f; // size = 0x08
typedef struct {