blob: bb604bad4e43ffc5afaf386d58801060744e09ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "PassiveMonster.h"
class cCow : public cPassiveMonster
{
public:
cCow();
~cCow();
virtual bool IsA( const char* a_EntityType );
virtual void KilledBy( cEntity* a_Killer );
};
|