1
0
cuberite-2a/source/Mobs/Cow.h

26 lines
247 B
C
Raw Normal View History

#pragma once
#include "PassiveMonster.h"
class cCow :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cCow();
CLASS_PROTODEF(cCow);
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
} ;