Create and use MAME Listrom serializer

This commit is contained in:
Matt Nadareski
2023-07-30 10:29:14 -04:00
parent 378f9cbfd1
commit bcef1c20b2
9 changed files with 701 additions and 460 deletions

View File

@@ -1,11 +1,9 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using SabreTools.Core;
using SabreTools.DatItems;
using SabreTools.DatItems.Formats;
using SabreTools.IO.Writers;
namespace SabreTools.DatFiles.Formats
{
@@ -17,7 +15,10 @@ namespace SabreTools.DatFiles.Formats
/// <inheritdoc/>
protected override ItemType[] GetSupportedTypes()
{
return new ItemType[] { ItemType.Rom };
return new ItemType[]
{
ItemType.Rom
};
}
/// <inheritdoc/>