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

11 lines
330 B
C++

#pragma once
#include "ServerCommand.h"
class DefaultGameModeCommand : public ServerCommand
{
public:
wstring getName() { return L"defaultgamemode"; }
wstring getUsage() { return L"/defaultgamemode <mode> - Sets the default game mode"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};