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