aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/SheepFurModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/SheepFurModel.h')
-rw-r--r--Minecraft.Client/SheepFurModel.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Minecraft.Client/SheepFurModel.h b/Minecraft.Client/SheepFurModel.h
index c614765e..a30f923a 100644
--- a/Minecraft.Client/SheepFurModel.h
+++ b/Minecraft.Client/SheepFurModel.h
@@ -1,6 +1,8 @@
#pragma once
#include "QuadrupedModel.h"
+class LivingEntity;
+
class SheepFurModel : public QuadrupedModel
{
private:
@@ -8,6 +10,6 @@ private:
public:
SheepFurModel();
- virtual void prepareMobModel(shared_ptr<Mob> mob, float time, float r, float a);
- virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, unsigned int uiBitmaskOverrideAnim=0);
+ virtual 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);
}; \ No newline at end of file