the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 371 B view raw
1#pragma once 2#include "VillagerModel.h" 3 4class WitchModel : public VillagerModel 5{ 6public: 7 bool holdingItem; 8 9private: 10 ModelPart *mole; 11 ModelPart *hat; 12 13public: 14 WitchModel(float g); 15 virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0); 16 int getModelVersion(); 17};