4jcraft/targets/minecraft/world/entity/OwnableEntity.h

12 lines
194 B
C++

#pragma once
#include <memory>
#include <string>
class Entity;
class OwnableEntity {
public:
virtual std::string getOwnerUUID() = 0;
virtual std::shared_ptr<Entity> getOwner() = 0;
};