the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 31 lines 672 B view raw
1#pragma once 2 3class MaterialColor 4{ 5public: 6 static MaterialColor **colors; 7 8 static MaterialColor *none; 9 static MaterialColor *grass; 10 static MaterialColor *sand; 11 static MaterialColor *cloth; 12 static MaterialColor *fire; 13 static MaterialColor *ice; 14 static MaterialColor *metal; 15 static MaterialColor *plant; 16 static MaterialColor *snow; 17 static MaterialColor *clay; 18 static MaterialColor *dirt; 19 static MaterialColor *stone; 20 static MaterialColor *water; 21 static MaterialColor *wood; 22 23 static void staticCtor(); 24 25public: 26 eMinecraftColour col; 27 int id; 28 29private: 30 MaterialColor(int id, eMinecraftColour col); 31};