recrownedgtk/RecrownedAthenaeum.Tools/CommandProcessor/EngineCommandArgument.cs

16 lines
432 B
C#

namespace RecrownedAthenaeum.Tools.CommandProcessor
{
public class EngineCommandArgument
{
public string invokeString;
public string help;
public bool required;
public EngineCommandArgument(string invokeString, string help, bool required = false)
{
this.invokeString = invokeString;
this.help = help;
this.required = required;
}
}
}