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