diff options
Diffstat (limited to 'ConsoleApp/Main.cs')
-rw-r--r-- | ConsoleApp/Main.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ConsoleApp/Main.cs b/ConsoleApp/Main.cs index 9a180f6..56f2a8d 100644 --- a/ConsoleApp/Main.cs +++ b/ConsoleApp/Main.cs @@ -15,9 +15,16 @@ namespace ConsoleApp { CommandLookup.Add("export-obj", new ExportObjCommand()); CommandLookup.Add("export-collada", new ExportColladaCommand()); CommandLookup.Add("export-textures", new ExportTexturesCommand()); + CommandLookup.Add("replace-image", new ReplaceImageCommand()); } public static void Main(string[] args) { + // Debugging BS + //args = new string[] { "list", "/home/me/Dropbox/NEWERsmbw/bigbrick/big_renga_block.brres" }; + //System.IO.Directory.SetCurrentDirectory("/home/me/Games/Newer/CGround"); + //args = new string[] { "export-collada", "regular.brres", "large.dae", "circle_ground_L" }; + + Console.WriteLine("NW4RTools by Treeki"); Console.WriteLine(); @@ -82,4 +89,3 @@ namespace ConsoleApp { } } } - |