recrownedathenaeum/RecrownedAthenaeum.Tools/CommandProcessor/Commands/StopCommand.cs
2021-12-23 21:27:41 -06:00

19 lines
487 B
C#
Executable File

namespace RecrownedAthenaeum.Tools.CommandProcessor.Commands
{
internal class StopCommand : EngineCommand
{
CommandEngine commandEngine;
public StopCommand(CommandEngine commandEngine) : base("quit", "stop", "q", "exit")
{
this.commandEngine = commandEngine;
help = "Exits the tool.";
}
public override void Run(string[] arguments = null)
{
commandEngine.running = false;
}
}
}