[DatFile, Machine] Allow for device references

This commit is contained in:
Matt Nadareski
2017-01-09 15:58:29 -08:00
parent 17f412d4ea
commit 14915d5918
2 changed files with 107 additions and 10 deletions

View File

@@ -1,4 +1,6 @@
using SabreTools.Helper.Data;
using System.Collections.Generic;
using SabreTools.Helper.Data;
namespace SabreTools.Helper.Dats
{
@@ -19,6 +21,7 @@ namespace SabreTools.Helper.Dats
protected bool _runnable;
protected string _board;
protected string _rebuildTo;
protected List<string> _devices;
protected MachineType _machineType;
#endregion
@@ -86,6 +89,11 @@ namespace SabreTools.Helper.Dats
get { return _rebuildTo; }
set { _rebuildTo = value; }
}
public List<string> Devices
{
get { return _devices; }
set { _devices = value; }
}
public MachineType MachineType
{
get { return _machineType; }