Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/EndermanModel.h
2026-05-14 19:16:33 -04:00

13 lines
305 B
C++

#pragma once
#include "HumanoidModel.h"
class EndermanModel : public HumanoidModel
{
public:
bool carrying;
bool creepy;
EndermanModel();
virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
};