Files
SabreTools/SabreTools.DatFiles/Formats/Missfile.Reader.cs

18 lines
494 B
C#
Raw Normal View History

2023-07-30 21:32:49 -04:00
using System;
namespace SabreTools.DatFiles.Formats
{
/// <summary>
/// Represents parsing a Missfile
/// </summary>
internal partial class Missfile : DatFile
{
/// <inheritdoc/>
/// <remarks>There is no consistent way to parse a missfile</remarks>
public override void ParseFile(string filename, int indexId, bool keep, bool statsOnly = false, bool throwOnError = false)
{
throw new NotImplementedException();
}
}
}