the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 8 lines 127 B view raw
1#pragma once 2 3class OwnableEntity 4{ 5public: 6 virtual wstring getOwnerUUID() = 0; 7 virtual shared_ptr<Entity> getOwner() = 0; 8};