The-Powder-Toy/src/simulation/MenuSection.h

13 lines
141 B
C

#ifndef MENUSECTION_H_
#define MENUSECTION_H_
struct menu_section
{
char *icon;
const char *name;
int itemcount;
int doshow;
};
#endif