14 lines
166 B
C
14 lines
166 B
C
#ifndef MENULIST_H
|
|
#define MENULIST_H
|
|
|
|
#include "menudef.h"
|
|
|
|
struct MenuList
|
|
{
|
|
const char *name;
|
|
int menuCount;
|
|
MenuDef **menus;
|
|
};
|
|
|
|
#endif // MENULIST_H
|