using FSO.Files.Utils; using System.IO; namespace FSO.Files.Formats.IFF.Chunks { /// /// Duplicate of STR chunk, instead used for simulator constants. /// public class FCNS : STR { //no difference! public override void Read(IffFile iff, Stream stream) { using (var io = IoBuffer.FromStream(stream, ByteOrder.LITTLE_ENDIAN)) { var zero = io.ReadInt32(); var version = io.ReadInt32(); //2 in tso string magic = io.ReadCString(4); //NSCF var count = io.ReadInt32(); LanguageSets[0].Strings = new STRItem[count]; for (int i=0; i