blob: d50c8df086cdbac1de50c3a5ef5749ebe9dbf8fc (
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, cPawn * a_Killer = NULL) override;
} ;
|