mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
18 lines
494 B
C#
18 lines
494 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|