added --minimap to OpenRA Utility

closes #4195
This commit is contained in:
Matthias Mailänder
2013-12-05 17:41:03 +01:00
parent 06b0ce621f
commit 5a4fc712a9
3 changed files with 23 additions and 2 deletions

View File

@@ -28,6 +28,7 @@ namespace OpenRA.Utility
{ "--transpose", Command.TransposeShp },
{ "--docs", Command.ExtractTraitDocs },
{ "--map-hash", Command.GetMapHash },
{ "--minimap", Command.GenerateMinimap },
};
if (args.Length == 0) { PrintUsage(); return; }
@@ -62,6 +63,7 @@ namespace OpenRA.Utility
Console.WriteLine(" --transpose SRCSHP DESTSHP START N M [START N M ...] Transpose the N*M block of frames starting at START.");
Console.WriteLine(" --docs MOD Generate trait documentation in MarkDown format.");
Console.WriteLine(" --map-hash MAPFILE Generate hash of specified oramap file.");
Console.WriteLine(" --minimap MAPFILE Render PNG minimap of specified oramap file.");
}
static string GetNamedArg(string[] args, string arg)