2/3rds m412, fix previous headers

This commit is contained in:
CreateSource 2024-07-31 21:53:10 -04:00
parent ebef402160
commit 88aa365b97
10 changed files with 1767 additions and 498 deletions

1305
src/REL/m412Dll/main.c Normal file

File diff suppressed because it is too large Load diff

7
src/libhu/setvf.c Normal file
View file

@ -0,0 +1,7 @@
#include "dolphin.h"
void HuSetVecF(Vec* arg0, f32 arg8, f32 arg9, f32 argA) {
arg0->x = arg8;
arg0->y = arg9;
arg0->z = argA;
}

7
src/libhu/subvf.c Normal file
View file

@ -0,0 +1,7 @@
#include "dolphin.h"
void HuSubVecF(Vec* out, Vec* in, Vec* sub) {
out->x = in->x - sub->x;
out->y = in->y - sub->y;
out->z = in->z - sub->z;
}