pmd-red/include/menu.h

29 lines
520 B
C
Raw Normal View History

2021-07-07 16:39:34 +00:00
#ifndef GUARD_MENU_H
#define GUARD_MENU_H
#include "input.h"
2023-08-04 04:37:49 +00:00
// size: 0x8
typedef struct MenuItem
{
2022-09-16 17:48:13 +00:00
const u8 *text;
2023-02-12 17:24:40 +00:00
s32 menuAction; // action??
} MenuItem;
2023-08-04 04:37:49 +00:00
// size: 0x50
typedef struct MenuStruct
{
2023-02-26 16:36:23 +00:00
const u8 *unk0; // header text?
/* 0x4 */ const MenuItem *menuItems;
const u32 *menuTextColorArray;
u16 *unkC;
/* 0x10 */ s32 index;
/* 0x14 */ MenuInputStruct input;
/* 0x48 */ s32 menuAction;
bool8 unk4C;
bool8 unk4D;
bool8 unk4E;
} MenuStruct;
2021-07-07 16:39:34 +00:00
#endif // GUARD_MENU_H