mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-07-14 17:57:03 +00:00
8 lines
134 B
C++
8 lines
134 B
C++
#pragma once
|
|
|
|
class OwnableEntity
|
|
{
|
|
public:
|
|
virtual wstring getOwnerUUID() = 0;
|
|
virtual shared_ptr<Entity> getOwner() = 0;
|
|
}; |