mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-01 19:04:48 +00:00
12 lines
194 B
C++
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;
|
|
}; |