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
+15
View File
@@ -0,0 +1,15 @@
#pragma once
class MinecraftServer;
class ConsoleInputSource;
class ServerCommand
{
public:
virtual ~ServerCommand() {}
virtual wstring getName() = 0;
virtual wstring getUsage() = 0;
virtual void execute(const wstring& args, ConsoleInputSource *src, MinecraftServer *server) = 0;
static void notifyAdmins(ConsoleInputSource *src, MinecraftServer *server, const wstring& message);
};