blob: ed47dab04f783c7ffda78e0f74358e5606f10b97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
// Makes the mob follow specific held items
class cBehaviorItemFollower;
class iBehaviorItemFollower;
//fwds
class cMonster;
class cItems;
class cBehaviorItemFollower
{
public:
cBehaviorItemFollower(iBehaviorItemFollower * a_Parent);
// Functions our host Monster should invoke:
bool ActiveTick();
private:
/** Our parent */
iBehaviorItemFollower * m_ParentInterface;
cMonster * m_Parent;
};
|