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

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);
};