mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
36 lines
524 B
C
36 lines
524 B
C
#ifndef M_SUBMENU_H
|
|
#define M_SUBMENU_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
mSM_PROCESS_WAIT,
|
|
mSM_PROCESS_PREWAIT,
|
|
mSM_PROCESS_LINKWAIT,
|
|
mSM_PROCESS_PLAY,
|
|
mSM_PROCESS_END,
|
|
|
|
mSM_PROCESS_NUM
|
|
};
|
|
|
|
/* sizeof (Submenu) == 0x1B8 */
|
|
typedef struct submenu_s {
|
|
/* 0x000 */ int mode;
|
|
/* 0x004 */ int menu_type;
|
|
/* 0x008 */ int current_menu_type;
|
|
|
|
/* 0x00C */ int process_status;
|
|
/* 0x010 */ u8 _10[0x1B8 - 0x010];
|
|
// TODO: finish
|
|
} Submenu;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|