5dplomacy/MultiversalDiplomacy/CommandLine/ReplOptions.cs

13 lines
269 B
C#

using CommandLine;
namespace MultiversalDiplomacy.CommandLine;
[Verb("repl", HelpText = "Begin an interactive 5dplomacy session.")]
public class ReplOptions
{
public static void Execute(ReplOptions args)
{
throw new NotImplementedException();
}
}