From a26a0e3825bb337a4be0f0c7f171e4cbd450bded Mon Sep 17 00:00:00 2001 From: "admin@omencraft.com" Date: Tue, 25 Oct 2011 23:46:01 +0000 Subject: git-svn-id: http://mc-server.googlecode.com/svn/trunk@10 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cCow.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 source/cCow.h (limited to 'source/cCow.h') diff --git a/source/cCow.h b/source/cCow.h new file mode 100644 index 000000000..512bb3ed3 --- /dev/null +++ b/source/cCow.h @@ -0,0 +1,21 @@ +#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; +}; -- cgit v1.2.3