The-Powder-Toy/src/simulation/MenuSection.h
mniip 9183fa1755 apparently Ximon hates const; a lot;
added a bunch of const everywhere, had to modify a few functions to be const-compliant
2013-10-30 04:38:13 +04:00

13 lines
147 B
C

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