mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 19:56:22 +00:00
12 lines
296 B
C++
12 lines
296 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class GameModeServerCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"gamemode"; }
|
|
wstring getUsage() { return L"/gamemode <mode> [player]"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|