summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Sheep.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Sheep.h')
-rw-r--r--source/Mobs/Sheep.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/Mobs/Sheep.h b/source/Mobs/Sheep.h
new file mode 100644
index 000000000..369fc78c5
--- /dev/null
+++ b/source/Mobs/Sheep.h
@@ -0,0 +1,28 @@
+
+#pragma once
+
+#include "PassiveMonster.h"
+
+
+
+
+
+class cSheep :
+ public cPassiveMonster
+{
+ typedef cPassiveMonster super;
+
+public:
+ cSheep(void);
+
+ bool m_IsSheared;
+ NIBBLETYPE m_WoolColor; // Uses E_META_WOOL_ constants for colors
+
+ CLASS_PROTODEF(cSheep);
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+} ;
+
+
+
+