aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/OwnableEntity.h
blob: ae6e538348cb66ecd55ee986ed629835b2336b51 (plain)
1
2
3
4
5
6
7
8
#pragma once

class OwnableEntity
{
public:
	virtual wstring getOwnerUUID() = 0;
	virtual shared_ptr<Entity> getOwner() = 0;
};