mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-27 15:00:33 +00:00
11 lines
142 B
C
11 lines
142 B
C
#ifndef GUARD_MENU_H
|
|
#define GUARD_MENU_H
|
|
|
|
struct MenuItem
|
|
{
|
|
const char *text;
|
|
u32 menuAction; // action??
|
|
};
|
|
|
|
#endif // GUARD_MENU_H
|