summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Monster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Monster.h')
-rw-r--r--src/Mobs/Monster.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Mobs/Monster.h b/src/Mobs/Monster.h
index f97cd3e3f..1ed443aad 100644
--- a/src/Mobs/Monster.h
+++ b/src/Mobs/Monster.h
@@ -200,10 +200,11 @@ public:
bool IsPathFinderActivated() const;
// Behavior getters (most are probably not used. mobTodo - cleanup most of them)
- virtual cBehaviorBreeder * GetBehaviorBreeder();
- virtual const cBehaviorBreeder * GetBehaviorBreeder() const;
- virtual cBehaviorAttacker * GetBehaviorAttacker();
- virtual cBehaviorDayLightBurner * GetBehaviorDayLightBurner(); // mobTodo this is probably temporary
+ cBehaviorBreeder * GetBehaviorBreeder();
+ const cBehaviorBreeder * GetBehaviorBreeder() const;
+ cBehaviorAttacker * GetBehaviorAttacker();\
+ cBehaviorBreeder * m_BehaviorBreederPointer;
+ cBehaviorAttacker * m_BehaviorAttackerPointer;
// Polymorphic behavior functions
virtual void InheritFromParents(cMonster * a_Parent1, cMonster * a_Parent2);