Files
LCEMP-Server/Commands/GameModeServerCommand.h
2026-03-15 22:25:51 -03:00

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);
};