16 lines
416 B
C#
16 lines
416 B
C#
|
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();
|
||
|
}
|
||
|
}
|