diff options
Diffstat (limited to 'src/Mobs/Chicken.h')
-rw-r--r-- | src/Mobs/Chicken.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Mobs/Chicken.h b/src/Mobs/Chicken.h index 5e84a61c8..c9d54ce5a 100644 --- a/src/Mobs/Chicken.h +++ b/src/Mobs/Chicken.h @@ -6,13 +6,11 @@ -class cChicken: - public cPassiveMonster +class cChicken : public cPassiveMonster { using Super = cPassiveMonster; -public: - + public: cChicken(); CLASS_PROTODEF(cChicken) @@ -30,10 +28,6 @@ public: virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override; -private: - + private: int m_EggDropTimer; -} ; - - - +}; |