mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-25 18:20:54 +00:00
12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class Entity;
|
|
|
|
class OwnableEntity {
|
|
public:
|
|
virtual std::wstring getOwnerUUID() = 0;
|
|
virtual std::shared_ptr<Entity> getOwner() = 0;
|
|
}; |