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
19 lines
473 B
C
19 lines
473 B
C
#ifndef POKEHEARTGOLD_OPTIONS_APP_H
|
|
#define POKEHEARTGOLD_OPTIONS_APP_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "options.h"
|
|
#include "overlay_manager.h"
|
|
|
|
typedef struct OptionsApp_Args {
|
|
u32 unk0;
|
|
Options *options;
|
|
MenuInputStateMgr *menuInputStateMgr;
|
|
} OptionsApp_Args;
|
|
|
|
BOOL OptionsMenu_Init(OverlayManager *manager, int *state);
|
|
BOOL OptionsMenu_Main(OverlayManager *manager, int *state);
|
|
BOOL OptionsMenu_Exit(OverlayManager *manager, int *state);
|
|
|
|
#endif
|