public void Read(BlamLib.IO.EndianReader s) { char[] tag = s.ReadTag(); if (!TagInterface.TagGroup.Test(tag, Ext)) { throw new Debug.ExceptionLog("File '{0}' had a bad header '{1}'", s.FileName, new string(tag)); } int count = s.ReadInt32(); //Names = new List<string>(count); //ScenarioOffsets = new List<int>(count); for (int x = 0; x < count; x++) { Names.Add(s.ReadString()); Scenarios.Add(s.ReadString()); } }