mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-23 15:36:07 +00:00
Notably also adds some metadata files for NixOS * add support for linux clang cross compiles * add linux clang instructions * un-capitalize Mob.horse.* * update the description in flake.nix --------- Co-authored-by: Loki <lokirautio@gmail.com>
11 lines
436 B
C++
11 lines
436 B
C++
#pragma once
|
|
|
|
#include "../Minecraft.World/CommandDispatcher.h"
|
|
#include "../Minecraft.World/AdminLogCommand.h"
|
|
|
|
class ServerCommandDispatcher : public CommandDispatcher, public AdminLogCommand
|
|
{
|
|
public:
|
|
ServerCommandDispatcher();
|
|
void logAdminCommand(shared_ptr<CommandSender> source, int type, ChatPacket::EChatPacketMessage messageType, const wstring& message = L"", int customData = -1, const wstring& additionalMessage = L"");
|
|
}; |