mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-27 15:10:26 +00:00
22 lines
473 B
C
22 lines
473 B
C
#ifndef POKEHEARTGOLD_OVY_109_H
|
|
#define POKEHEARTGOLD_OVY_109_H
|
|
|
|
#include "overlay_manager.h"
|
|
#include "save.h"
|
|
|
|
typedef struct PhotoAlbumArgs {
|
|
u8 unk0[0x2];
|
|
u8 unk2;
|
|
u8 unk3[0x2];
|
|
u8 unk5;
|
|
u8 unk6[0x2];
|
|
u32 *unk8;
|
|
SaveData *saveData;
|
|
} PhotoAlbumArgs;
|
|
|
|
BOOL PhotoAlbum_Init(OVY_MANAGER *man, int *state);
|
|
BOOL PhotoAlbum_Main(OVY_MANAGER *man, int *state);
|
|
BOOL PhotoAlbum_Exit(OVY_MANAGER *man, int *state);
|
|
|
|
#endif //POKEHEARTGOLD_OVY_109_H
|