diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-08-29 19:32:25 +0200 |
---|---|---|
committer | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-08-29 19:32:25 +0200 |
commit | d0a2f22bc40b9a1c961d57962056501591d5b49f (patch) | |
tree | 69af4bab3021203536aab57bad1308f17636fd4c /src/Mobs/Pig.h | |
parent | Implemented chickens (diff) | |
download | cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar.gz cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar.bz2 cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar.lz cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar.xz cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.tar.zst cuberite-d0a2f22bc40b9a1c961d57962056501591d5b49f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Pig.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/src/Mobs/Pig.h b/src/Mobs/Pig.h index ed0685e5f..276ac1df8 100644 --- a/src/Mobs/Pig.h +++ b/src/Mobs/Pig.h @@ -1,16 +1,16 @@ - #pragma once -#include "PassiveMonster.h" - - - +#include "Behaviors/BehaviorBreeder.h" +#include "Behaviors/BehaviorItemFollower.h" +#include "Behaviors/BehaviorCoward.h" +#include "Behaviors/BehaviorWanderer.h" +#include "Monster.h" class cPig : - public cPassiveMonster + public cMonster { - typedef cPassiveMonster super; + typedef cMonster super; public: cPig(void); @@ -30,8 +30,14 @@ public: } bool IsSaddled(void) const { return m_bIsSaddled; } - + virtual cBehaviorBreeder * GetBehaviorBreeder() override; + virtual const cBehaviorBreeder * GetBehaviorBreeder() const override; private: + // Tick controlling behaviors + cBehaviorBreeder m_BehaviorBreeder; + cBehaviorItemFollower m_BehaviorItemFollower; + cBehaviorCoward m_BehaviorCoward; + cBehaviorWanderer m_BehaviorWanderer; bool m_bIsSaddled; |