summaryrefslogtreecommitdiffstats
path: root/source/cSheep.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cSheep.h')
-rw-r--r--source/cSheep.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/source/cSheep.h b/source/cSheep.h
index 948df55f4..170ea93fc 100644
--- a/source/cSheep.h
+++ b/source/cSheep.h
@@ -1,21 +1,14 @@
#pragma once
-#include "cMonster.h"
+#include "cPassiveMonster.h"
-class cSheep : public cMonster
+class cSheep : public cPassiveMonster
{
public:
cSheep();
- ~cSheep();
-
+ ~cSheep();
+
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;
-};
+};