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