nearly matching w10Dll

This commit is contained in:
Rainchus 2023-11-29 13:35:04 -06:00
parent 705aaefd28
commit 8bbb016899
9 changed files with 198 additions and 184 deletions

View file

@ -192,5 +192,5 @@ extern s16 lbl_1_data_32;
extern s32 lbl_1_data_54[2];
extern s32 lbl_1_data_5C[2];
extern s32 lbl_1_data_64[2];
extern s32 lbl_1_data_6C[2];
extern s32 lbl_1_data_6C[3]; //HACK: should be 2
extern BoardState lbl_8018FCF8;

View file

@ -7,5 +7,6 @@
#include "functions.h"
#include "variables.h"
#include "dolphin/mtx/GeoTypes.h"
#include "dolphin/mtx.h"
#endif

View file

@ -11,6 +11,11 @@ typedef struct om_ovl_his_data {
int stat;
} omOvlHisData;
typedef struct Vec2f {
f32 x;
f32 y;
} Vec2f;
typedef struct Vec3f {
f32 x;
f32 y;