diff options
| author | Tyler McGavran <tyler.taggerung@gmail.com> | 2022-05-20 21:51:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-20 18:51:56 -0700 |
| commit | 84cb46c0e5fa374993c451047d3f2f38b86f4f6e (patch) | |
| tree | 7038e3ea8b96f0a6907d359ce0e0ed7f681d0b2c /include | |
| parent | 489e89714766069b64b4ffcf41828406d16f2504 (diff) | |
Update and add some header files (#205)
* Update header files for main, memory and math_util
* Required updating func_802A82E4 to keep the match
Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/actor_types.h | 5 | ||||
| -rw-r--r-- | include/functions.h | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/actor_types.h b/include/actor_types.h index 4b8c11436..450befb6a 100644 --- a/include/actor_types.h +++ b/include/actor_types.h @@ -1,3 +1,6 @@ +#ifndef ACTOR_TYPES_H +#define ACTOR_TYPES_H + #include <ultra64.h> #include <macros.h> #include <common_structs.h> @@ -320,3 +323,5 @@ struct BananaActor { /* 0x24 */ Vec3f velocity; /* 0x30 */ UnkActorInner unk30; }; // size = 0x70 + +#endif diff --git a/include/functions.h b/include/functions.h index f4558e4e2..6ad785b6e 100644 --- a/include/functions.h +++ b/include/functions.h @@ -3,13 +3,11 @@ #include "common_structs.h" -s32 random_int(u16); void mio0decode(u8* arg0, u8* arg1); void func_8000F2DC(void); void func_8000F628(void); void func_8000EEDC(void); -f32 func_802AE1C0(f32 arg0, f32 arg1, f32 arg2); void func_802B6540(f32* arg0, f32 arg1, f32 arg2, f32 arg3, s16 arg4); void func_80295BF8(s32 arg0); void func_8005D6C0(Player* player); |
