Files renamed to RecrownedGTK.
This commit is contained in:
15
RecrownedGTK.Tools/CommandProcessor/EngineCommandArgument.cs
Normal file
15
RecrownedGTK.Tools/CommandProcessor/EngineCommandArgument.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user