diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/NewChicken.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Mobs/NewChicken.h b/src/Mobs/NewChicken.h new file mode 100644 index 000000000..4323585e6 --- /dev/null +++ b/src/Mobs/NewChicken.h @@ -0,0 +1,28 @@ +#pragma once + +#include "NewMonster.h" + + + + + +class cNewChicken : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewChicken(void); + + CLASS_PROTODEF(cNewChicken) + + 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; +} ; + + + |