recrownedathenaeum/RecrownedAthenaeum.ConsoleTools/CommandProcessor/EngineCommandArgument.cs

20 lines
500 B
C#
Raw Normal View History

2018-12-29 00:52:52 +00:00
using System;
using System.Collections.Generic;
using System.Text;
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)
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
}
}
}