summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Creeper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Creeper.h')
-rw-r--r--src/Mobs/Creeper.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/Mobs/Creeper.h b/src/Mobs/Creeper.h
index 3d1af2ed1..60a33fe7b 100644
--- a/src/Mobs/Creeper.h
+++ b/src/Mobs/Creeper.h
@@ -3,7 +3,9 @@
#include "Monster.h"
#include "Behaviors/BehaviorAttackerSuicideBomber.h"
-
+#include "Behaviors/BehaviorWanderer.h"
+#include "Behaviors/BehaviorAggressive.h"
+#include "Behaviors/BehaviorDayLightBurner.h"
@@ -24,7 +26,13 @@ public:
bool IsBurnedWithFlintAndSteel(void) const;
private:
- cBehaviorAttackerSuicideBomber m_BehaviorSuicideBomber;
+ // tick behaviors
+ cBehaviorAttackerSuicideBomber m_BehaviorAttackerSuicideBomber;
+ cBehaviorWanderer m_BehaviorWanderer;
+
+ // other behaviors
+ cBehaviorAggressive m_BehaviorAggressive;
+ cBehaviorDayLightBurner m_BehaviourDayLightBurner;
} ;