mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 01:36:01 +00:00
12 lines
286 B
C++
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);
|
|
};
|