Split Missfile with no other updates

This commit is contained in:
Matt Nadareski
2023-07-30 21:32:49 -04:00
parent 0930b70084
commit 4fe80bcec7
3 changed files with 123 additions and 105 deletions

View File

@@ -0,0 +1,17 @@
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();
}
}
}