start start menu decomp
This commit is contained in:
18
include/menu.h
Normal file
18
include/menu.h
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user