16 lines
426 B
C#
16 lines
426 B
C#
|
namespace RecrownedGTK.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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|