summaryrefslogtreecommitdiffstats
path: root/src/Mobs/ZombiePigman.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Mobs/ZombiePigman.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Mobs/ZombiePigman.h b/src/Mobs/ZombiePigman.h
index dad420da7..e3bab0539 100644
--- a/src/Mobs/ZombiePigman.h
+++ b/src/Mobs/ZombiePigman.h
@@ -1,7 +1,9 @@
#pragma once
#include "Monster.h"
-
+#include "Behaviors/BehaviorAttackerMelee.h"
+#include "Behaviors/BehaviorWanderer.h"
+#include "Behaviors/BehaviorAggressive.h"
@@ -21,6 +23,13 @@ public:
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
virtual bool IsUndead(void) override { return true; }
+
+ // tick behaviors
+ cBehaviorAttackerMelee m_BehaviorAttackerMelee;
+ cBehaviorWanderer m_BehaviorWanderer;
+
+ // other behaviors
+ cBehaviorAggressive m_BehaviorAggressive;
} ;