mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-22 10:44:49 +00:00
8 lines
127 B
C++
8 lines
127 B
C++
#pragma once
|
|
|
|
class OwnableEntity
|
|
{
|
|
public:
|
|
virtual wstring getOwnerUUID() = 0;
|
|
virtual shared_ptr<Entity> getOwner() = 0;
|
|
}; |