16 lines
444 B
C#
16 lines
444 B
C#
using CommandLine;
|
|
|
|
namespace MultiversalDiplomacy.CommandLine;
|
|
|
|
[Verb("adjudicate", HelpText = "Adjudicate a Multiversal Diplomacy game state.")]
|
|
public class AdjudicateOptions
|
|
{
|
|
[Value(0, HelpText = "Input file describing the game state to adjudicate, or - to read from stdin.")]
|
|
public string? InputFile { get; set; }
|
|
|
|
public static void Execute(AdjudicateOptions args)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|