summaryrefslogtreecommitdiff
path: root/include/menu.h
diff options
context:
space:
mode:
authorDizzyEggg <jajkodizzy@wp.pl>2017-09-05 13:01:24 +0200
committerDizzyEggg <jajkodizzy@wp.pl>2017-09-05 13:01:24 +0200
commit1680fc0b81675b0e1cc988ece1c79075a56dbcf0 (patch)
tree66d9f8d0691fd6df39a566ecb854e7d880730c85 /include/menu.h
parent54b83061152ce6e85d1ce7185ab3645d7448e03d (diff)
start start menu decomp
Diffstat (limited to 'include/menu.h')
-rw-r--r--include/menu.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/menu.h b/include/menu.h
new file mode 100644
index 000000000..c8aafcb30
--- /dev/null
+++ b/include/menu.h
@@ -0,0 +1,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