mirror of
https://git.neolegacy.dev/Elysium/Project-Elysium.git
synced 2026-08-09 19:11:30 +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;
|
|
}; |