recrownedathenaeum/RecrownedAthenaeum.Tools/CommandProcessor/Commands/StopCommand.cs

19 lines
487 B
C#
Raw Normal View History

2019-01-13 20:22:53 +00:00
namespace RecrownedAthenaeum.Tools.CommandProcessor.Commands
{
internal class StopCommand : EngineCommand
{
CommandEngine commandEngine;
public StopCommand(CommandEngine commandEngine) : base("quit", "stop", "q", "exit")
{
this.commandEngine = commandEngine;
2018-12-29 00:52:52 +00:00
help = "Exits the tool.";
}
public override void Run(string[] arguments = null)
{
commandEngine.running = false;
}
}
}