mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 04:07:21 +00:00
12 lines
302 B
C++
12 lines
302 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class TpCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"tp"; }
|
|
wstring getUsage() { return L"/tp [player] <x> <y> <z> OR /tp [player] <player>"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|