mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-13 00:29:36 -05:00
* splitting lots of pokemon square and labeling lots of other things * actually commit this stuff * more moving data and things * more screen work * split out some pokemon dungeon data * lots of data work * push more data work * split kecleon, decomp another kanghaskhan func, and try to doc UpdateBGControl more * lots of item work * label more item things * subtype -> category and doc types/category
11 lines
114 B
C
11 lines
114 B
C
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
struct MenuItem
|
|
{
|
|
const char *text;
|
|
u32 menuAction; // action??
|
|
};
|
|
|
|
#endif
|