5dplomacy/MultiversalDiplomacy/CommandLine/ReplOptions.cs

13 lines
269 B
C#
Raw Normal View History

2024-08-16 20:33:13 +00:00
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();
}
}