summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Bat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Bat.h')
-rw-r--r--src/Mobs/Bat.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/Mobs/Bat.h b/src/Mobs/Bat.h
index 2da2dc3f2..cdda2e1c7 100644
--- a/src/Mobs/Bat.h
+++ b/src/Mobs/Bat.h
@@ -1,16 +1,16 @@
#pragma once
-#include "PassiveMonster.h"
-
+#include "Monster.h"
+#include "Behaviors/BehaviorWanderer.h"
class cBat :
- public cPassiveMonster
+ public cMonster
{
- typedef cPassiveMonster super;
+ typedef cMonster super;
public:
cBat(void);
@@ -18,6 +18,9 @@ public:
CLASS_PROTODEF(cBat)
bool IsHanging(void) const {return false; }
+
+private:
+ cBehaviorWanderer m_BehaviorWanderer;
} ;