Compare commits
2 Commits
fb0a17eb9c
...
a16cbee92f
Author | SHA1 | Date |
---|---|---|
|
a16cbee92f | |
|
1bb2b7c0ce |
|
@ -11,10 +11,13 @@ namespace LuckCatchers_Extractor
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
br = new(File.OpenRead(args[0]));
|
br = new(File.OpenRead(args[0]));
|
||||||
br.BaseStream.Position = 8;
|
if (new string(br.ReadChars(8)) != "VOLUME0\0")
|
||||||
|
throw new System.Exception("This is not a LuckCatchers res file.");
|
||||||
|
|
||||||
System.Collections.Generic.List<Subfile> subfiles = new();
|
System.Collections.Generic.List<Subfile> subfiles = new()
|
||||||
subfiles.Add(new());
|
{
|
||||||
|
new()
|
||||||
|
};
|
||||||
for(int i = 0; i < subfiles[0].size - 1; i++)
|
for(int i = 0; i < subfiles[0].size - 1; i++)
|
||||||
subfiles.Add(new());
|
subfiles.Add(new());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue