summaryrefslogtreecommitdiffstats
path: root/source/cGhast.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cGhast.h')
-rw-r--r--source/cGhast.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/cGhast.h b/source/cGhast.h
new file mode 100644
index 000000000..c35e0ec19
--- /dev/null
+++ b/source/cGhast.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include "cMonster.h"
+
+class cGhast : public cMonster
+{
+public:
+ 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;
+};