mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-31 20:43:00 -05:00
19 lines
472 B
C
19 lines
472 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(OVY_MANAGER *man, int *state);
|
|
BOOL OptionsMenu_Main(OVY_MANAGER *man, int *state);
|
|
BOOL OptionsMenu_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_OVY_54_H
|