summaryrefslogtreecommitdiff
path: root/include/menu_helpers.h
blob: f55a90615bb181ccd6abcba5497a1b1a06ad2cc1 (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 sub_80F914C(u8, const struct YesNoFuncTable *);

#endif // GUARD_MENU_HELPERS_H