aboutsummaryrefslogtreecommitdiff
path: root/shiftskn/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'shiftskn/Program.cs')
-rw-r--r--shiftskn/Program.cs59
1 files changed, 59 insertions, 0 deletions
diff --git a/shiftskn/Program.cs b/shiftskn/Program.cs
new file mode 100644
index 0000000..4631523
--- /dev/null
+++ b/shiftskn/Program.cs
@@ -0,0 +1,59 @@
+using System;
+using System.IO;
+using System.IO.Compression;
+
+namespace shiftskn
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ // Variable Declarations
+ int argsLength = args.Length;
+
+ if (argsLength < 2)
+ {
+ ShowHelp();
+ }
+
+ if (argsLength >= 2)
+ {
+ if (args[0] == "picpng")
+ {
+ try
+ {
+ if (args.Length >= 3)
+ {
+ Pic2PNG.Convert(args[1], args[2]);
+ }
+ Pic2PNG.Convert(args[1]);
+ }
+ catch
+ {
+ ShowHelp();
+ }
+ }
+ else if (args[0] == "decode")
+ {
+ try
+ {
+ Decode.DecodeSkinToDir(args[1], args[2]);
+ }
+ catch
+ {
+ ShowHelp();
+ }
+ }
+ else
+ {
+ ShowHelp();
+ }
+ }
+ }
+
+ static void ShowHelp()
+ {
+ Help.PrintHelp();
+ }
+ }
+} \ No newline at end of file