blob: b4400b35455bd650177290b8ce728a235b9da687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "HumanoidModel.h"
class VillagerZombieModel : public HumanoidModel
{
private:
void _init(float g, float yOffset, bool isArmor);
public:
VillagerZombieModel();
VillagerZombieModel(float g, float yOffset, bool isArmor);
int version();
void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, unsigned int uiBitmaskOverrideAnim=0);
};
|