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

12 lines
286 B
C++

#pragma once
#include "ServerCommand.h"
class TimeServerCommand : public ServerCommand
{
public:
wstring getName() { return L"time"; }
wstring getUsage() { return L"/time <set|add> <value>"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};