summaryrefslogtreecommitdiff
path: root/include/menu.h
blob: dbaeea6b12c92a6ad350fe9e1e65a7cbb62a4568 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef MENU_H
#define MENU_H

struct MenuItem
{
    const char *text;
    u32 menuAction; // action??
};

#endif