summaryrefslogtreecommitdiff
path: root/src/simulation/MenuSection.h
blob: 12b1ba61e9efb7db979a388cc5eab8173a5e90cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MENUSECTION_H_
#define MENUSECTION_H_

struct menu_section
{
	char *icon;
	const char *name;
	int itemcount;
	int doshow;
};

#endif