blob: 3760e7968e2f70ba442f3bed4b1146a9dbd8a2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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, unsigned int uiBitmaskOverrideAnim=0);
};
|