4jcraft/targets/minecraft/world/entity/OwnableEntity.h
2026-04-01 13:27:58 -05:00

7 lines
143 B
C++

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