2019-01-13 14:22:53 -06:00
|
|
|
|
namespace RecrownedAthenaeum.Tools.CommandProcessor
|
2018-12-28 18:52:52 -06:00
|
|
|
|
{
|
|
|
|
|
public class EngineCommandArgument
|
|
|
|
|
{
|
|
|
|
|
public string invokeString;
|
|
|
|
|
public string help;
|
2019-01-13 00:13:57 -06:00
|
|
|
|
public bool required;
|
|
|
|
|
public EngineCommandArgument(string invokeString, string help, bool required = false)
|
2018-12-28 18:52:52 -06:00
|
|
|
|
{
|
|
|
|
|
this.invokeString = invokeString;
|
|
|
|
|
this.help = help;
|
2019-01-13 00:13:57 -06:00
|
|
|
|
this.required = required;
|
2018-12-28 18:52:52 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|