mirror of
https://github.com/ShiftOS-Rewind/shiftskn.git
synced 2025-01-22 03:11:47 -05:00
70d9df993d
I think this one can decompile 0.0.x skins, not sure... Maybe I should check?
17 lines
531 B
C#
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");
|
|
}
|
|
}
|
|
}
|