mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
19 lines
499 B
C#
19 lines
499 B
C#
|
|
namespace KianaBH.GameServer.Command;
|
|
|
|
public static class CommandExecutor
|
|
{
|
|
public delegate void RunCommand(ICommandSender sender, string cmd);
|
|
|
|
public static event RunCommand? OnRunCommand;
|
|
|
|
public static void ExecuteCommand(ICommandSender sender, string cmd)
|
|
{
|
|
OnRunCommand?.Invoke(sender, cmd);
|
|
}
|
|
|
|
public static void ConsoleExcuteCommand(string input)
|
|
{
|
|
CommandManager.HandleCommand(input, new ConsoleCommandSender(CommandManager.Logger));
|
|
}
|
|
} |