2012-12-21 06:04:08 -05:00
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "PassiveMonster.h"
|
2011-10-25 19:46:01 -04:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cCow :
|
|
|
|
public cPassiveMonster
|
2011-10-25 19:46:01 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
public:
|
|
|
|
cCow();
|
|
|
|
|
2014-07-22 18:36:13 -04:00
|
|
|
CLASS_PROTODEF(cCow)
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2014-10-20 16:55:07 -04:00
|
|
|
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
|
2013-10-15 12:17:17 -04:00
|
|
|
virtual void OnRightClicked(cPlayer & a_Player) override;
|
2014-01-29 12:08:33 -05:00
|
|
|
|
2014-01-29 13:15:26 -05:00
|
|
|
virtual const cItem GetFollowedItem(void) const override { return cItem(E_ITEM_WHEAT); }
|
2014-01-29 12:08:33 -05:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-25 19:46:01 -04:00
|
|
|
|