/// <summary> /// Intializes a new <see cref="RunCommandClickEvent"/> /// </summary> /// <param name="command">The command to run</param> public RunCommandClickEvent(Commands.BaseCommand command) : base("run_command") { Command = command; }
public void SetNext(BaseCommand nextCommand) { NextCommand = nextCommand; }