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

12 lines
298 B
C++

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