A tool to extract from Super Meat Boy dat files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Meat-Cleaver/Block2.cs

20 lines
501 B

using static Program;
namespace Meat_Cleaver
{
public class Block2
{
public readonly int start = br.ReadInt32();
public readonly int size = br.ReadInt32();
readonly int parentFolder = br.ReadInt32();
public static List<Block2> ReadBlock2()
{
List<Block2> blocks = [];
int size = br.ReadInt32();
for (int i = 0; i < size; i++)
blocks.Add(new Block2());
return blocks;
}
}
}