mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 23:46:33 +00:00
16 lines
434 B
C++
16 lines
434 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::string& message = "", int customData = -1,
|
|
const std::string& additionalMessage = "") = 0;
|
|
}; |