summaryrefslogtreecommitdiffstats
path: root/source/cCow.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cCow.h')
-rw-r--r--source/cCow.h21
1 files changed, 21 insertions, 0 deletions
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;
+};