December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -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);
};