Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/NesTiler.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 09:29:20 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-10-27 09:37:51 +0300
commitf128219bda69abacb9f6ee0bc457611f8081c5a2 (patch)
treef60e49c008fe8fab2352bf5ad0c3fdb1c7013325 /NesTiler/CmdArgs.cs
parentf4800d51617609dcde745e8c826e14bf30a8ad9a (diff)
Moved argument parser to Config.cs.
Diffstat (limited to 'NesTiler/CmdArgs.cs')
-rw-r--r--NesTiler/CmdArgs.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/NesTiler/CmdArgs.cs b/NesTiler/CmdArgs.cs
index 8288cc2..f4b5ee7 100644
--- a/NesTiler/CmdArgs.cs
+++ b/NesTiler/CmdArgs.cs
@@ -39,7 +39,7 @@ namespace com.clusterrr.Famicom.NesTiler
};
}
- internal class ArgIn : IArg
+ class ArgIn : IArg
{
public const string S = "i";
public const string L = "in";
@@ -55,7 +55,7 @@ namespace com.clusterrr.Famicom.NesTiler
public const string S = "c";
public const string L = "colors";
public string? Params { get; } = "<file>";
- public string Description { get; } = $"JSON or PAL file with the list of available colors\n(default - {Program.DEFAULT_COLORS_FILE})";
+ public string Description { get; } = $"JSON or PAL file with the list of available colors\n(default - {Config.DEFAULT_COLORS_FILE})";
public bool HasIndex { get; } = false;
public string Short { get; } = S;
public string Long { get; } = L;