Include more information in notes and add extra fields ot DatData

This commit is contained in:
Matt Nadareski
2016-05-16 11:59:33 -07:00
parent 564e44f71d
commit a5682454b1
2 changed files with 11 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
namespace SabreTools.Helper
using System.Collections.Generic;
namespace SabreTools.Helper
{
/// <summary>
/// Intermediate struct for holding and processing rom data
@@ -41,5 +43,7 @@
public ForceNodump ForceNodump;
public ForcePacking ForcePacking;
public OutputFormat OutputFormat;
public bool MergeRoms;
public Dictionary<string, List<RomData>> Roms;
}
}