the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 12 lines 361 B view raw
1#pragma once 2 3#include "CommandsEnum.h" 4#include "ChatPacket.h" 5 6class CommandSender 7{ 8public: 9 //virtual int getUID() = 0; 10 virtual void sendMessage(const wstring& message, ChatPacket::EChatPacketMessage type = ChatPacket::e_ChatCustom, int customData = -1, const wstring& additionalMessage = L"") = 0; 11 virtual bool hasPermission(EGameCommand command) = 0; 12};