mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:57:23 +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;
|
|
}; |