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