summaryrefslogtreecommitdiff
path: root/include/menu.h
blob: c8aafcb3050c9b7ea69f28569442c0f804e593ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GUARD_MENU_H
#define GUARD_MENU_H

#include "text.h"

struct MenuAction
{
   const u8 *text;
   u8 (*func)();
};

struct MenuAction2
{
    const u8 *text;
    void (*func)(u8);
};

#endif // GUARD_MENU_H