using System; namespace SabreTools.DatFiles.Formats { /// /// Represents parsing a Missfile /// internal partial class Missfile : DatFile { /// /// There is no consistent way to parse a missfile public override void ParseFile(string filename, int indexId, bool keep, bool statsOnly = false, bool throwOnError = false) { throw new NotImplementedException(); } } }