the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 13 lines 316 B view raw
1#pragma once 2#include "Model.h" 3 4class MinecartModel : public Model 5{ 6public: 7 static const int MINECART_LENGTH=6; 8 9 ModelPart *cubes[MINECART_LENGTH]; 10 11 MinecartModel(); 12 virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled); 13};