This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
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