diff options
Diffstat (limited to 'src/Mobs/Behaviors/BehaviorItemFollower.h')
-rw-r--r-- | src/Mobs/Behaviors/BehaviorItemFollower.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Mobs/Behaviors/BehaviorItemFollower.h b/src/Mobs/Behaviors/BehaviorItemFollower.h index 2abdeb381..28f00c473 100644 --- a/src/Mobs/Behaviors/BehaviorItemFollower.h +++ b/src/Mobs/Behaviors/BehaviorItemFollower.h @@ -3,20 +3,16 @@ // Makes the mob follow specific held items class cBehaviorItemFollower; -class iBehaviorItemFollower; - //fwds class cMonster; class cItems; - - - - class cBehaviorItemFollower { public: - cBehaviorItemFollower(cMonster * a_Parent); + cBehaviorItemFollower(cMonster * a_Parent, cItems & a_Items); + + void GetBreedingItems(cItems & a_Items); // Functions our host Monster should invoke: bool ActiveTick(); |