Files
MinecraftConsoles/Minecraft.Client/EndermanModel.h

13 lines
305 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "HumanoidModel.h"
class EndermanModel : public HumanoidModel
{
public:
bool carrying;
bool creepy;
EndermanModel();
2026-03-01 11:00:23 -06:00
virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
2026-03-01 12:16:08 +08:00
};