Initial commit

This commit is contained in:
NOTPIES
2026-03-15 22:25:51 -03:00
commit c356c7b911
100 changed files with 8788 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include "stdafx.h"
#include "ConsoleCommandSender.h"
#include "../../Minecraft.Client/ConsoleInputSource.h"
void ConsoleCommandSender::sendMessage(const wstring& message, ChatPacket::EChatPacketMessage type, int customData, const wstring& additionalMessage)
{
src->info(message);
}
bool ConsoleCommandSender::hasPermission(EGameCommand command)
{
return true;
}