the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 21 lines 719 B view raw
1#pragma once 2#include "Model.h" 3#include "..\Minecraft.World\Mob.h" 4 5class WolfModel : public Model 6{ 7public: 8 ModelPart *head, *body, *leg0, *leg1, *leg2, *leg3; 9// Cube *ear1; 10// Cube *ear2; 11// Cube *mouth; 12 ModelPart *tail; 13 ModelPart *upperBody; 14private: 15 static const int legSize = 8; 16public: 17 WolfModel(); 18 virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled); 19 void prepareMobModel(shared_ptr<LivingEntity> mob, float time, float r, float a); 20 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0); 21};