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