[SabreTools, DatFile] Add 1G1R skeleton (nw)

This commit is contained in:
Matt Nadareski
2017-02-27 21:53:20 -08:00
parent 08572a26af
commit 5737fd5175
4 changed files with 68 additions and 26 deletions

View File

@@ -31,6 +31,8 @@ namespace SabreTools.Helper.Dats
private bool _excludeOf;
private bool _mergeRoms;
private Hash _stripHash;
private bool _oneGameOneRegion;
private List<string> _regions = new List<string>();
private SortedDictionary<string, List<DatItem>> _files = new SortedDictionary<string, List<DatItem>>();
private SortedBy _sortedBy;
@@ -168,6 +170,16 @@ namespace SabreTools.Helper.Dats
get { return _stripHash; }
set { _stripHash = value; }
}
public bool OneGameOneRegion
{
get { return _oneGameOneRegion; }
set { _oneGameOneRegion = value; }
}
public List<string> Regions
{
get { return _regions; }
set { _regions = value; }
}
public SortedBy SortedBy
{
get { return _sortedBy; }