[SabreTools, Filter] Update list and string flags

This commit is contained in:
Matt Nadareski
2018-01-08 12:19:20 -08:00
parent 326a09a52d
commit 2e67c74c54
4 changed files with 400 additions and 363 deletions

View File

@@ -71,17 +71,17 @@ namespace SabreTools.Library.DatFiles
#region Positive
public List<string> GameNames
public List<string> MachineNames
{
get { return _gameNames; }
set { _gameNames = value; }
}
public List<string> RomNames
public List<string> ItemNames
{
get { return _romNames; }
set { _romNames = value; }
}
public List<string> RomTypes
public List<string> ItemTypes
{
get { return _romTypes; }
set { _romTypes = value; }
@@ -131,17 +131,17 @@ namespace SabreTools.Library.DatFiles
#region Negative
public List<string> NotGameNames
public List<string> NotMachineNames
{
get { return _notGameNames; }
set { _notGameNames = value; }
}
public List<string> NotRomNames
public List<string> NotItemNames
{
get { return _notRomNames; }
set { _notRomNames = value; }
}
public List<string> NotRomTypes
public List<string> NotItemTypes
{
get { return _notRomTypes; }
set { _notRomTypes = value; }