mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 11:03:39 +00:00
13 lines
393 B
C++
13 lines
393 B
C++
#pragma once
|
|
|
|
#include "../Network/Packets/ChatPacket.h"
|
|
|
|
class CommandSender;
|
|
|
|
class AdminLogCommand
|
|
{
|
|
public:
|
|
static const int LOGTYPE_DONT_SHOW_TO_SELF = 1;
|
|
|
|
virtual void logAdminCommand(std::shared_ptr<CommandSender> source, int type, ChatPacket::EChatPacketMessage messageType, const std::wstring& message = L"", int customData = -1, const std::wstring& additionalMessage = L"") = 0;
|
|
}; |