mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-02 21:54:45 -05:00
OVY_MANAGER -> OverlayManager OVY_FUNC -> OverlayFunction OVY_MGR_TEMPLATE -> OverlayManagerTemplate
24 lines
565 B
C
24 lines
565 B
C
#ifndef POKEHEARTGOLD_OVY_109_H
|
|
#define POKEHEARTGOLD_OVY_109_H
|
|
|
|
#include "menu_input_state.h"
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
|
|
typedef struct PhotoAlbumArgs {
|
|
u8 unk0;
|
|
u8 photoWasSelected;
|
|
u8 cursorPos;
|
|
u8 unk3[0x2];
|
|
u8 unk5;
|
|
u8 unk6[0x2];
|
|
MenuInputStateMgr *menuInputStatePtr;
|
|
SaveData *saveData;
|
|
} PhotoAlbumArgs;
|
|
|
|
BOOL PhotoAlbum_Init(OverlayManager *man, int *state);
|
|
BOOL PhotoAlbum_Main(OverlayManager *man, int *state);
|
|
BOOL PhotoAlbum_Exit(OverlayManager *man, int *state);
|
|
|
|
#endif // POKEHEARTGOLD_OVY_109_H
|