diff options
Diffstat (limited to 'src/Mobs/MagmaCube.h')
-rw-r--r-- | src/Mobs/MagmaCube.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Mobs/MagmaCube.h b/src/Mobs/MagmaCube.h index 960ff0c90..4cfc1c27d 100644 --- a/src/Mobs/MagmaCube.h +++ b/src/Mobs/MagmaCube.h @@ -1,7 +1,7 @@ #pragma once #include "Monster.h" - +#include "Behaviors/BehaviorDoNothing.h" @@ -28,6 +28,9 @@ protected: /** Size of the MagmaCube, with 1 being the smallest */ int m_Size; + +private: + cBehaviorDoNothing m_BehaviorDoNothing; } ; |