blob: 729f51a1a0d4cbf585aa0827754ece1120909796 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");
}
}
}
|