mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-09 04:02:46 -05:00
OVY_MANAGER -> OverlayManager OVY_FUNC -> OverlayFunction OVY_MGR_TEMPLATE -> OverlayManagerTemplate
20 lines
470 B
C
20 lines
470 B
C
#ifndef POKEHEARTGOLD_MAIN_H
|
|
#define POKEHEARTGOLD_MAIN_H
|
|
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
|
|
typedef struct UnkStruct_02111868_sub {
|
|
int unk_00;
|
|
u32 unk_04;
|
|
SaveData *saveData;
|
|
} UnkStruct_02111868_sub;
|
|
|
|
void NitroMain(void);
|
|
void Main_ResetOverlayManager(void);
|
|
void RegisterMainOverlay(FSOverlayID overlayId, const OverlayManagerTemplate *template);
|
|
void InitializeMainRNG(void);
|
|
void HandleDSLidAction(void);
|
|
|
|
#endif // POKEHEARTGOLD_MAIN_H
|