diff options
Diffstat (limited to '')
-rw-r--r-- | source/cSkeleton.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/source/cSkeleton.h b/source/cSkeleton.h index f30ef23c4..ca7ed2fe3 100644 --- a/source/cSkeleton.h +++ b/source/cSkeleton.h @@ -1,22 +1,16 @@ #pragma once
-#include "cMonster.h"
+#include "cAggressiveMonster.h"
-class cSkeleton : public cMonster
+class cSkeleton : public cAggressiveMonster
{
public:
cSkeleton();
- ~cSkeleton(); - + ~cSkeleton();
+
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;
-}; +
+};
|