the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 12 lines 313 B view raw
1#pragma once 2 3#include "..\Minecraft.World\Command.h" 4 5class TeleportCommand : public Command 6{ 7public: 8 virtual EGameCommand getId(); 9 virtual void execute(shared_ptr<CommandSender> source, byteArray commandData); 10 11 static shared_ptr<GameCommandPacket> preparePacket(PlayerUID subject, PlayerUID destination); 12};