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.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/Mobs/Chicken.h b/source/Mobs/Chicken.h
index 2f674e908..979c4d8a0 100644
--- a/source/Mobs/Chicken.h
+++ b/source/Mobs/Chicken.h
@@ -1,4 +1,3 @@
-
#pragma once
#include "PassiveMonster.h"
@@ -18,8 +17,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_EggDropTimer;
+} ;
+