aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/GhastModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/GhastModel.h')
-rw-r--r--Minecraft.Client/GhastModel.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.Client/GhastModel.h b/Minecraft.Client/GhastModel.h
new file mode 100644
index 00000000..22e9023c
--- /dev/null
+++ b/Minecraft.Client/GhastModel.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "Model.h"
+
+class GhastModel : public Model
+{
+public:
+ static const int TENTACLESLENGTH=9;
+ ModelPart *body;
+ ModelPart *tentacles[TENTACLESLENGTH];
+
+ GhastModel();
+ virtual void setupAnim(float time, float r, float bob, float yRot, float xRot, float scale, unsigned int uiBitmaskOverrideAnim=0);
+ virtual void render(shared_ptr<Entity> entity, float time, float r, float bob, float yRot, float xRot, float scale, bool usecompiled);
+}; \ No newline at end of file