mirror of
https://github.com/n64decomp/mk64
synced 2026-08-10 02:45:20 -04:00
e49fe2acfc
* small adjustement * adjust some naming and other just two other in link with time trial --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
42 lines
1011 B
C
42 lines
1011 B
C
#ifndef STAFF_GHOSTS_H
|
|
#define STAFF_GHOSTS_H
|
|
|
|
#include <PR/os.h>
|
|
#include <common_structs.h>
|
|
|
|
void func_80005B18(void);
|
|
void load_course_ghost(void);
|
|
void load_post_time_trial_replay(void);
|
|
void load_player_ghost(void);
|
|
void set_staff_ghost(void);
|
|
s32 func_800051C4(void);
|
|
void func_8000522C(void);
|
|
void func_800052A4(void);
|
|
void func_80005310(void);
|
|
void process_post_time_trial_replay(void);
|
|
void process_course_ghost_replay(void);
|
|
void process_player_ghost_replay(void);
|
|
void func_8000599C(void);
|
|
void func_80005AE8(Player*);
|
|
void func_80005E6C(void);
|
|
void replays_loop(void);
|
|
|
|
// mi0decode
|
|
|
|
extern s32 mio0encode(s32 input, s32, s32);
|
|
extern s32 func_80040174(void*, s32, s32);
|
|
|
|
extern s32 D_80162DC8;
|
|
extern s32 D_80162DCC;
|
|
extern u16 bPlayerGhostDisabled;
|
|
extern u16 bCourseGhostDisabled;
|
|
extern u16 D_80162DD8;
|
|
extern s32 D_80162E00;
|
|
extern s32 D_80162DE0;
|
|
extern s32 D_80162DE4;
|
|
extern s32 D_80162DE8;
|
|
extern s32 gPauseTriggered;
|
|
extern s32 gPostTimeTrialReplayCannotSave;
|
|
|
|
#endif /* STAFF_GHOSTS_H */
|