2a9664d6ca
also refactored cWorld::m_WorldAge and cWorld::m_TimeOfDay
31 lines
467 B
C++
31 lines
467 B
C++
#pragma once
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cChicken :
|
|
public cPassiveMonster
|
|
{
|
|
typedef cPassiveMonster super;
|
|
|
|
public:
|
|
cChicken(void);
|
|
|
|
CLASS_PROTODEF(cChicken)
|
|
|
|
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
|
|
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
|
|
|
virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_SEEDS); }
|
|
|
|
private:
|
|
|
|
int m_EggDropTimer;
|
|
} ;
|
|
|
|
|
|
|