summaryrefslogtreecommitdiffstats
path: root/source/cGhast.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cGhast.h')
-rw-r--r--source/cGhast.h18
1 files changed, 5 insertions, 13 deletions
diff --git a/source/cGhast.h b/source/cGhast.h
index c35e0ec19..c33d32df5 100644
--- a/source/cGhast.h
+++ b/source/cGhast.h
@@ -1,22 +1,14 @@
#pragma once
-#include "cMonster.h"
+#include "cAggressiveMonster.h"
-class cGhast : public cMonster
+class cGhast : public cAggressiveMonster
{
public:
cGhast();
- ~cGhast();
-
+ ~cGhast();
+
virtual bool IsA( const char* a_EntityType );
- virtual void GetMonsterConfig(const char* pm_name);
- 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;
-};
+};