mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
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
|