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

11 lines
300 B
C++

#pragma once
#include "ServerCommand.h"
class MeCommand : public ServerCommand
{
public:
wstring getName() { return L"me"; }
wstring getUsage() { return L"/me <action ...> - Performs the specified action"; }
void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server);
};