mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 21:13:35 +00:00
7 lines
143 B
C++
7 lines
143 B
C++
#pragma once
|
|
|
|
class OwnableEntity {
|
|
public:
|
|
virtual std::wstring getOwnerUUID() = 0;
|
|
virtual std::shared_ptr<Entity> getOwner() = 0;
|
|
}; |