Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
ikpil committed Oct 2, 2023
1 parent d987dbf commit 5a81f05
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/DotFastLZ.SixUnpackTool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,19 @@ public static int Main(string[] args)
Console.WriteLine("");
return 0;
}

archiveFiles.Add(argument);
}

for (int i = 0; i < archiveFiles.Count; ++i)
{
var archiveFile = archiveFiles[i];
unpack_file(archiveFile);
SixPack.unpack_file(archiveFile);
}

return 0;
}

private static int unpack_file(string s)
{
return 0;
}

private static void Usage()
{
Console.WriteLine("6unpack: uncompress 6pack archive");
Expand Down

0 comments on commit 5a81f05

Please sign in to comment.