the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 396 B view raw
1#pragma once 2#include "HumanoidModel.h" 3 4class ZombieModel : public HumanoidModel 5{ 6public: 7 ZombieModel(); 8 9protected: 10 ZombieModel(float g, float yOffset, int texWidth, int texHeight); 11 12public: 13 ZombieModel(float g, bool isArmor); 14 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};