summaryrefslogtreecommitdiffstats
path: root/source/cCow.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cCow.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/source/cCow.h b/source/cCow.h
index 512bb3ed3..83d67e1ad 100644
--- a/source/cCow.h
+++ b/source/cCow.h
@@ -1,8 +1,8 @@
#pragma once
-#include "cMonster.h"
+#include "cPassiveMonster.h"
-class cCow : public cMonster
+class cCow : public cPassiveMonster
{
public:
cCow();
@@ -10,12 +10,5 @@ public:
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;
};