aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/WolfModel.h
blob: 4b7bda6c30760ce14ed77a826fb8a22061532232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once
#include "Model.h"
#include "..\Minecraft.World\Mob.h"

class WolfModel : public Model
{
public:
	ModelPart *head, *body, *leg0, *leg1, *leg2, *leg3;
//     Cube *ear1;
//     Cube *ear2;
//     Cube *mouth;
    ModelPart *tail;
    ModelPart *upperBody;
private:
	static const int legSize = 8;
public:
	WolfModel();
    virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
    void prepareMobModel(shared_ptr<LivingEntity> mob, float time, float r, float a);
    virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, shared_ptr<Entity> entity, unsigned int uiBitmaskOverrideAnim=0);
};