mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-05-22 15:15:11 +00:00
11 lines
310 B
C++
11 lines
310 B
C++
#pragma once
|
|
#include "ServerCommand.h"
|
|
|
|
class SayCommand : public ServerCommand
|
|
{
|
|
public:
|
|
wstring getName() { return L"say"; }
|
|
wstring getUsage() { return L"/say <message ...> - Broadcasts a message to all players"; }
|
|
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
|
|
};
|