diff options
| author | AShifter <[email protected]> | 2018-02-12 09:10:20 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2018-02-12 09:10:20 -0700 |
| commit | 70d9df993db283d38f5441d0d0f47b5803020630 (patch) | |
| tree | 2b3605c76ce04d0ec7bc337d1cd70669f3920528 /shiftskn/Help.cs | |
| parent | d078e1089c8d1f0efc14c2461017ff244cc3031e (diff) | |
| download | shiftskn-rewind-70d9df993db283d38f5441d0d0f47b5803020630.tar.gz shiftskn-rewind-70d9df993db283d38f5441d0d0f47b5803020630.tar.bz2 shiftskn-rewind-70d9df993db283d38f5441d0d0f47b5803020630.zip | |
I think this one can decompile 0.0.x skins, not sure... Maybe I should
check?
Diffstat (limited to 'shiftskn/Help.cs')
| -rw-r--r-- | shiftskn/Help.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shiftskn/Help.cs b/shiftskn/Help.cs new file mode 100644 index 0000000..729f51a --- /dev/null +++ b/shiftskn/Help.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace shiftskn +{ + public abstract class Help + { + public static void PrintHelp() + { + Console.WriteLine("ShiftOS Skin Decoder v1.0 - By AShifter\n"); + Console.WriteLine("args:\n" + + "decode [INPUTPATH] [OUTPUTPATH] [SKINVER] [FLAGS] | Decode a SKN file\n" + + "picpng [INPUTPATH] [(optional)OUTPUTPATH] [FLAGS] | convert a .PIC to a .PNG"); + } + } +} |
