19 lines
588 B
C#
19 lines
588 B
C#
|
using CommandLine;
|
||
|
|
||
|
namespace MultiversalDiplomacy.CommandLine;
|
||
|
|
||
|
[Verb("repl", HelpText = "Begin an interactive 5dplomacy session.")]
|
||
|
public class ReplOptions
|
||
|
{
|
||
|
[Option('i', "input", HelpText = "Begin the repl session by executing the commands in this file.")]
|
||
|
public string? InputFile { get; set; }
|
||
|
|
||
|
[Option('o', "output", HelpText = "Echo the repl session to this file. Specify a directory to autogenerate a filename.")]
|
||
|
public string? OutputFile { get; set; }
|
||
|
|
||
|
public static void Execute(ReplOptions args)
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|