mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 02:36:25 +00:00
12 lines
268 B
C++
12 lines
268 B
C++
#pragma once
|
|
|
|
#include "ServerCommand.h"
|
|
|
|
class ListServerCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"list"; }
|
|
wstring getUsage() { return L"/list"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|