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.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/Mobs/Chicken.h b/source/Mobs/Chicken.h
index 2f674e908..6505a4788 100644
--- a/source/Mobs/Chicken.h
+++ b/source/Mobs/Chicken.h
@@ -18,8 +18,13 @@ public:
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_DropEggCount;
+} ;
+