summaryrefslogtreecommitdiffstats
path: root/src/Mobs/SnowGolem.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Mobs/SnowGolem.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/SnowGolem.h b/src/Mobs/SnowGolem.h
index 59026b3ec..0170a57a9 100644
--- a/src/Mobs/SnowGolem.h
+++ b/src/Mobs/SnowGolem.h
@@ -2,7 +2,7 @@
#pragma once
#include "Monster.h"
-
+#include "Behaviors/BehaviorWanderer.h"
@@ -19,6 +19,9 @@ public:
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
+
+private:
+ cBehaviorWanderer m_BehaviorWanderer;
} ;