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.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/Mobs/Chicken.h b/source/Mobs/Chicken.h
deleted file mode 100644
index 979c4d8a0..000000000
--- a/source/Mobs/Chicken.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#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;
- virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
-
-private:
-
-
- int m_EggDropTimer;
-} ;
-
-
-