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; } ; -