blob: ee2bda63816dc3b713d5b05b342de65e4e4796dd (
plain) (
tree)
|
|
#pragma once
// Makes the mob follow specific held items
class cBehaviorItemFollower;
//fwds
class cMonster;
class cItems;
class cBehaviorItemFollower
{
public:
cBehaviorItemFollower(cMonster * a_Parent);
void GetBreedingItems(cItems & a_Items);
// Functions our host Monster should invoke:
bool ActiveTick();
private:
/** Our parent */
cMonster * m_Parent;
};
|