4jcraft/targets/minecraft/commands/AdminLogCommand.h
2026-04-01 13:27:58 -05:00

16 lines
438 B
C++

#pragma once
#include "minecraft/network/packet/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;
};