#pragma once #include "ServerCommand.h" class TpCommand : public ServerCommand { public: wstring getName() { return L"tp"; } wstring getUsage() { return L"/tp [player] OR /tp [player] "; } void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server); };