diff options
Diffstat (limited to 'Minecraft.World/TamableAnimal.h')
| -rw-r--r-- | Minecraft.World/TamableAnimal.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Minecraft.World/TamableAnimal.h b/Minecraft.World/TamableAnimal.h index 71502788..7d17a43c 100644 --- a/Minecraft.World/TamableAnimal.h +++ b/Minecraft.World/TamableAnimal.h @@ -1,10 +1,11 @@ #pragma once #include "Animal.h" +#include "OwnableEntity.h" class SitGoal; -class TamableAnimal : public Animal +class TamableAnimal : public Animal, public OwnableEntity { protected: static const int DATA_FLAGS_ID = 16; @@ -33,6 +34,9 @@ public: virtual void setSitting(bool value); virtual wstring getOwnerUUID(); virtual void setOwnerUUID(const wstring &name); - virtual shared_ptr<Mob> getOwner(); + virtual shared_ptr<Entity> getOwner(); virtual SitGoal *getSitGoal(); + bool wantsToAttack(shared_ptr<LivingEntity> target, shared_ptr<LivingEntity> owner); + Team *getTeam(); + bool isAlliedTo(shared_ptr<LivingEntity> other); };
\ No newline at end of file |
