mirror of
https://github.com/n64decomp/mk64
synced 2026-05-24 06:50:53 -04:00
b7e7b34998
Couple matches functions, an update to a struct, a bunch of header files adjustments, and some mips_to_c regenerations Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
19 lines
431 B
C
19 lines
431 B
C
#ifndef _FUNCTIONS_H_
|
|
#define _FUNCTIONS_H_
|
|
|
|
#include "common_structs.h"
|
|
|
|
void mio0decode(u8* arg0, u8* arg1);
|
|
|
|
void func_8000F2DC(void);
|
|
void func_8000F628(void);
|
|
void func_8006B7E4(Player* player, s32 arg1);
|
|
void func_800267AC(Player* player, s8 arg1, s8 arg2);
|
|
void func_8005D290(void);
|
|
// TODO: should rot, arg4, and arg5 be rotx, roty, and rotz?
|
|
void func_8001C4D0(f32 x, f32 y, f32 z, s16 rot, s16 arg4, s32 arg5);
|
|
|
|
|
|
|
|
#endif
|