diff options
author | lapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-25 23:47:12 +0100 |
---|---|---|
committer | lapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-25 23:47:12 +0100 |
commit | e8f230f24e55469f1aa832bc8dad73db8018ffe1 (patch) | |
tree | abccca0bef086c4f2eda8497fa757433464e3b23 /source/cCavespider.h | |
parent | - fixed the code from the last commit :) (diff) | |
download | cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.gz cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.bz2 cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.lz cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.xz cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.zst cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cCavespider.h | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/source/cCavespider.h b/source/cCavespider.h index 4709e3392..0630351f0 100644 --- a/source/cCavespider.h +++ b/source/cCavespider.h @@ -1,22 +1,15 @@ -#pragma once
-
-#include "cMonster.h"
-
-class cCavespider : public cMonster
-{
-public:
- cCavespider();
+#pragma once + +#include "cAggressiveMonster.h" + +class cCavespider : public cAggressiveMonster +{ +public: + cCavespider(); ~cCavespider(); - 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;
+ virtual bool IsA( const char* a_EntityType ); + + virtual void Tick(float a_Dt); + virtual void KilledBy( cEntity* a_Killer ); }; |