Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
672 B · 31 lines
C
at master
1234567891011121314151617181920212223242526272829303132#pragma once
class MaterialColor{public: static MaterialColor **colors; static MaterialColor *none; static MaterialColor *grass; static MaterialColor *sand; static MaterialColor *cloth; static MaterialColor *fire; static MaterialColor *ice; static MaterialColor *metal; static MaterialColor *plant; static MaterialColor *snow; static MaterialColor *clay; static MaterialColor *dirt; static MaterialColor *stone; static MaterialColor *water; static MaterialColor *wood;
static void staticCtor();
public: eMinecraftColour col; int id;
private: MaterialColor(int id, eMinecraftColour col);};