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