recrownedathenaeum/RecrownedAthenaeum.Tools/CommandProcessor/EngineCommandArgument.cs

16 lines
432 B
C#
Raw Normal View History

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;
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;
this.required = required;
2018-12-29 00:52:52 +00:00
}
}
}