summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Chicken.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Chicken.h')
-rw-r--r--source/Mobs/Chicken.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/Mobs/Chicken.h b/source/Mobs/Chicken.h
new file mode 100644
index 000000000..2f674e908
--- /dev/null
+++ b/source/Mobs/Chicken.h
@@ -0,0 +1,25 @@
+
+#pragma once
+
+#include "PassiveMonster.h"
+
+
+
+
+
+class cChicken :
+ public cPassiveMonster
+{
+ typedef cPassiveMonster super;
+
+public:
+ cChicken(void);
+
+ CLASS_PROTODEF(cChicken);
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+} ;
+
+
+
+