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