Alexandria.Platforms.Wii.NintendoOpticalDiscPartitionFile.NintendoOpticalDiscPartitionFile C# (CSharp) Method

NintendoOpticalDiscPartitionFile() private method

private NintendoOpticalDiscPartitionFile ( FolderAsset parent, int index, int nameOffset, BinaryReader reader, NintendoOpticalDiscSystem system ) : System
parent Glare.Assets.FolderAsset
index int
nameOffset int
reader System.IO.BinaryReader
system NintendoOpticalDiscSystem
return System
        internal NintendoOpticalDiscPartitionFile(FolderAsset parent, int index, int nameOffset, BinaryReader reader, NintendoOpticalDiscSystem system)
            : base(parent, "")
        {
            Index = index;
            NameOffset = nameOffset;
            DataOffset = NintendoOpticalDiscPartition.LoadOffset(reader, system);
            Size = reader.ReadUInt32();
        }