1
0
Fork 0
cuberite-2a/src/Mobs/Cow.h

33 lines
405 B
C
Raw Normal View History

#pragma once
#include "PassiveMonster.h"
class cCow :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cCow();
CLASS_PROTODEF(cCow)
2014-10-20 20:55:07 +00:00
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
2013-10-15 16:17:17 +00:00
virtual void OnRightClicked(cPlayer & a_Player) override;
virtual void GetFollowedItems(cItems & a_Items) override
{
a_Items.Add(E_ITEM_WHEAT);
}
} ;