5dplomacy/MultiversalDiplomacy/CommandLine/AdjudicateOptions.cs

16 lines
444 B
C#
Raw Normal View History

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