the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 210 B view raw
1#pragma once 2 3#include "Model.h" 4 5class Cube; 6 7class SignModel : public Model 8{ 9public: 10 using Model::render; 11 ModelPart *cube; 12 ModelPart *cube2; 13 14 SignModel(); 15 void render(bool usecompiled); 16};