Alexandria.Engines.DarkSouls.StringGroup.StringGroup C# (CSharp) Method

StringGroup() private method

private StringGroup ( BinaryReader reader, ByteOrder byteOrder ) : System
reader System.IO.BinaryReader
byteOrder ByteOrder
return System
        internal StringGroup(BinaryReader reader, ByteOrder byteOrder)
        {
            StringsIndex = reader.ReadInt32(byteOrder);
            IndexStart = reader.ReadInt32(byteOrder);
            IndexEnd = reader.ReadInt32(byteOrder);
        }
StringGroup