diff options
author | Treeki <treeki@gmail.com> | 2011-04-06 03:08:58 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2011-04-06 03:08:58 +0200 |
commit | e9769ad02f7c8c892578e24d3001489263ece727 (patch) | |
tree | 4944089a67b7556670c9714934df1838a05971d8 /ConsoleApp/Main.cs | |
parent | c3fe440719b4e9a3fb3f4debe28c16cd7c60d7de (diff) | |
download | nw4rtools-e9769ad02f7c8c892578e24d3001489263ece727.tar.gz nw4rtools-e9769ad02f7c8c892578e24d3001489263ece727.zip |
added a replace image command
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 { } } } - |