5dplomacy/MultiversalDiplomacy/CommandLine/ImageOptions.cs

16 lines
416 B
C#
Raw Normal View History

2024-08-16 20:33:13 +00:00
using CommandLine;
namespace MultiversalDiplomacy.CommandLine;
[Verb("image", HelpText = "Generate an image of a game state.")]
public class ImageOptions
{
[Value(0, HelpText = "Input file describing the game state to visualize, or - to read from stdin.")]
public string? InputFile { get; set; }
public static void Execute(ImageOptions args)
{
throw new NotImplementedException();
}
}