mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-24 06:57:18 -05:00
32 lines
616 B
C
32 lines
616 B
C
|
|
// Guessing based off of 203B304
|
|
struct unkStruct_203B308
|
|
{
|
|
// size: 0xB6 << 1
|
|
u32 state;
|
|
u32 unk4;
|
|
u8 jobIndex;
|
|
u32 unkC;
|
|
u8 fill10[0x50 - 0x10];
|
|
u8 unk50;
|
|
u8 fill51[0x64 - 0x51];
|
|
u32 menuAction1;
|
|
u32 menuAction2;
|
|
struct MenuStruct unk6C;
|
|
struct MenuItem unkBC[8];
|
|
u16 unkFC[8];
|
|
struct UnkTextStruct2 unk10C[4];
|
|
};
|
|
extern struct unkStruct_203B308 *gPelipperBoard;
|
|
|
|
|
|
enum PelipperBoardStates {
|
|
INITIALIZE_PELIPPER_BOARD,
|
|
MAIN_PELIPPER_BOARD_MENU,
|
|
// 2 is ???
|
|
PELIPPER_BOARD_EXIT = 3,
|
|
PELIPPER_JOB_INFO = 7,
|
|
PELIPPER_JOB_LIST_MENU,
|
|
};
|
|
|