mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-08-28 23:45:48 -04:00
22 lines
421 B
C
22 lines
421 B
C
#ifndef GAME64_H
|
|
#define GAME64_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void Na_InitAudio(void (*fatal_callback)(), u8* load_addr, size_t load_size, u8* bootsound, size_t bootsound_size, BOOL cut_flag);
|
|
extern void Na_GameFrame();
|
|
extern u8 Na_CheckNeosBoot();
|
|
extern void Na_RestartPrepare();
|
|
extern u8 Na_CheckRestartReady();
|
|
extern void Na_Restart();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|