Add override method to all required places

This commit is contained in:
Matt Nadareski
2022-11-03 17:02:38 -07:00
parent a6d02d8c9c
commit d35faea5a9
17 changed files with 111 additions and 58 deletions

View File

@@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.IO;
using System.Text;
using SabreTools.Core;
using SabreTools.Core.Tools;
using SabreTools.DatItems;
@@ -15,9 +14,6 @@ namespace SabreTools.DatFiles.Formats
/// <summary>
/// Represents parsing and writing of a RomCenter DAT
/// </summary>
/// <remarks>
/// TODO: Check and enforce required fields in output
/// </remarks>
internal class RomCenter : DatFile
{
/// <summary>
@@ -367,6 +363,13 @@ namespace SabreTools.DatFiles.Formats
return new ItemType[] { ItemType.Rom };
}
/// <inheritdoc/>
protected override List<DatItemField> GetMissingRequiredFields(DatItem datItem)
{
// TODO: Check required fields
return null;
}
/// <inheritdoc/>
public override bool WriteToFile(string outfile, bool ignoreblanks = false, bool throwOnError = false)
{