mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
16 lines
348 B
C#
16 lines
348 B
C#
using System.IO;
|
|
using LibHac;
|
|
|
|
namespace hactoolnet
|
|
{
|
|
internal static class ProcessKip
|
|
{
|
|
public static void ProcessKip1(Context ctx)
|
|
{
|
|
using (var file = new FileStream(ctx.Options.InFile, FileMode.Open, FileAccess.Read))
|
|
{
|
|
var kip = new Kip(file);
|
|
}
|
|
}
|
|
}
|
|
}
|