19 lines
410 B
C#
19 lines
410 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace RecrownedAthenaeum.Tools.CommandProcessor
|
|||
|
{
|
|||
|
public class EngineCommandArgument
|
|||
|
{
|
|||
|
public string invokeString;
|
|||
|
public string help;
|
|||
|
|
|||
|
public EngineCommandArgument(string invokeString, string help)
|
|||
|
{
|
|||
|
this.invokeString = invokeString;
|
|||
|
this.help = help;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|