blob: 512bb3ed3b9d3e4593ce071dde2b25c8c35306dd (
plain) (
tree)
|
|
#pragma once
#include "cMonster.h"
class cCow : public cMonster
{
public:
cCow();
~cCow();
virtual bool IsA( const char* a_EntityType );
virtual void Tick(float a_Dt);
virtual void KilledBy( cEntity* a_Killer );
virtual void InStateIdle(float a_Dt);
virtual void InStateChasing(float a_Dt);
virtual void InStateEscaping(float a_Dt);
//float m_ChaseTime;
protected:
float m_ChaseTime;
};
|