pokeemerald/include/menu_helpers.h

21 lines
425 B
C
Raw Normal View History

2017-10-13 05:05:36 +02:00
#ifndef GUARD_MENU_HELPERS_H
#define GUARD_MENU_HELPERS_H
// Exported type declarations
2017-10-23 14:40:22 +02:00
struct YesNoFuncTable {
TaskFunc yesFunc;
TaskFunc noFunc;
};
2017-10-13 05:05:36 +02:00
// Exported RAM declarations
// Exported ROM declarations
2017-10-23 14:40:22 +02:00
void sub_812225C(u16 *, u16 *, u8, u8);
void sub_8122298(u16 *, u16 *, u8, u8, u8);
void sub_8121F68(u8 taskId, const struct YesNoFuncTable *data);
2017-10-13 05:05:36 +02:00
bool8 sub_81221AC(void);
#endif //GUARD_MENU_HELPERS_H