mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 10:57:40 -05:00
13 lines
221 B
C
13 lines
221 B
C
#ifndef GUARD_MENU_HELPERS_H
|
|
#define GUARD_MENU_HELPERS_H
|
|
|
|
struct YesNoFuncTable
|
|
{
|
|
void (*yesFunc)(u8);
|
|
void (*noFunc)(u8);
|
|
};
|
|
|
|
void sub_80F914C(u8, const struct YesNoFuncTable *);
|
|
|
|
#endif // GUARD_MENU_HELPERS_H
|