mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-27 04:25:20 -05:00
31 lines
501 B
C
31 lines
501 B
C
#ifndef GUARD_MENU_H
|
|
#define GUARD_MENU_H
|
|
|
|
struct MenuItem
|
|
{
|
|
const u8 *text;
|
|
s32 menuAction; // action??
|
|
};
|
|
|
|
struct MenuStruct
|
|
{
|
|
// size: 0x50
|
|
u32 unk0;
|
|
/* 0x4 */ struct MenuItem *menuItems;
|
|
u32 unk8;
|
|
u16 *unkC;
|
|
s32 fill10;
|
|
/* 0x14 */ u32 unk14;
|
|
u8 fill18[0x2C - 0x18];
|
|
/* 0x2C */ s16 menuIndex;
|
|
s16 unk2E;
|
|
u8 fill30[0x38 - 0x30];
|
|
u16 unk38;
|
|
u8 fill3A[0x48 - 0x3A];
|
|
s32 menuAction;
|
|
u8 unk4C;
|
|
u8 unk4D;
|
|
};
|
|
|
|
#endif // GUARD_MENU_H
|