shiftskn-rewind/shiftskn/Help.cs
AShifter 70d9df993d Add (unfinished) code
I think this one can decompile 0.0.x skins, not sure... Maybe I should
check?
2018-02-12 09:10:20 -07:00

17 lines
531 B
C#

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");
}
}
}