the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 13 lines 359 B view raw
1#pragma once 2 3#include "ChatPacket.h" 4 5class CommandSender; 6 7class AdminLogCommand 8{ 9public: 10 static const int LOGTYPE_DONT_SHOW_TO_SELF = 1; 11 12 virtual void logAdminCommand(shared_ptr<CommandSender> source, int type, ChatPacket::EChatPacketMessage messageType, const wstring& message = L"", int customData = -1, const wstring& additionalMessage = L"") = 0; 13};