The-Powder-Toy/src/simulation/GOLMenu.h
jacob1 2e17b848b1 Make element names a String (unicode support)
This won't be used by official elements, but mods or lua scripts could and do use unicode
2019-03-12 00:10:43 -04:00

13 lines
160 B
C

#ifndef The_Powder_Toy_GOLMenu_h
#define The_Powder_Toy_GOLMenu_h
struct gol_menu
{
String name;
pixel colour;
int goltype;
String description;
};
#endif