mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-31 20:43:00 -05:00
OVY_MANAGER -> OverlayManager OVY_FUNC -> OverlayFunction OVY_MGR_TEMPLATE -> OverlayManagerTemplate
19 lines
481 B
C
19 lines
481 B
C
#ifndef POKEHEARTGOLD_OVY_54_H
|
|
#define POKEHEARTGOLD_OVY_54_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
|
|
typedef struct OptionsMenuArgs {
|
|
u8 unk0[0x4];
|
|
Options *options;
|
|
MenuInputStateMgr *menuInputStatePtr;
|
|
} OptionsMenuArgs;
|
|
|
|
BOOL OptionsMenu_Init(OverlayManager *man, int *state);
|
|
BOOL OptionsMenu_Main(OverlayManager *man, int *state);
|
|
BOOL OptionsMenu_Exit(OverlayManager *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_OVY_54_H
|