mirror of https://github.com/pret/pokeemerald.git
19 lines
212 B
C
19 lines
212 B
C
|
#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
|