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