2012-12-21 03:04:08 -08:00
|
|
|
|
2012-10-19 11:30:46 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cOcelot :
|
|
|
|
public cPassiveMonster
|
2012-10-19 11:30:46 -07:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
2012-10-19 11:30:46 -07:00
|
|
|
public:
|
|
|
|
cOcelot();
|
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
virtual bool IsA(const char * a_EntityType) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-10-19 11:30:46 -07:00
|
|
|
|