recrownedathenaeum/RecrownedAthenaeum.Tools/CommandProcessor/EngineCommandArgument.cs
2021-12-23 21:27:41 -06:00

16 lines
432 B
C#
Executable File

namespace RecrownedAthenaeum.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;
}
}
}