summaryrefslogtreecommitdiffstats
path: root/src/Mobs/AggressiveMonster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/AggressiveMonster.h')
-rw-r--r--src/Mobs/AggressiveMonster.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Mobs/AggressiveMonster.h b/src/Mobs/AggressiveMonster.h
deleted file mode 100644
index 853504b7a..000000000
--- a/src/Mobs/AggressiveMonster.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#include "Monster.h"
-#include "Behaviors/BehaviorAggressive.h"
-
-
-typedef std::string AString;
-
-class cAggressiveMonster :
- public cMonster
-{
- typedef cMonster super;
-
-public:
-
- cAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
-
- virtual void Tick (std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
-
-private:
- cBehaviorAggressive m_BehaviorAggressive;
- cBehaviorWanderer m_BehaviorWanderer;
-} ;