blob: 74248e85a56578a734f9877455e25673c36598ec (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | #ifndef GUARD_MENU_HELPERS_H
#define GUARD_MENU_HELPERS_H
struct YesNoFuncTable
{
    void (*yesFunc)(u8);
    void (*noFunc)(u8);
};
void DoYesNoFuncWithChoice(u8, const struct YesNoFuncTable *);
#endif // GUARD_MENU_HELPERS_H
 |