16 lines
432 B
C#
Raw Normal View History

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;
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;
this.required = required;
2018-12-28 18:52:52 -06:00
}
}
}