Handle Configuration; promote Location, Setting

This commit is contained in:
Matt Nadareski
2020-09-02 22:38:00 -07:00
parent cefbc77dee
commit f9c072e78b
12 changed files with 741 additions and 93 deletions

View File

@@ -509,6 +509,9 @@ namespace SabreTools.Library.DatItems
case ItemType.Instance:
return new Instance();
case ItemType.Location:
return new Location();
case ItemType.Media:
return new Media();
@@ -527,6 +530,9 @@ namespace SabreTools.Library.DatItems
case ItemType.Sample:
return new Sample();
case ItemType.Setting:
return new Setting();
case ItemType.Slot:
return new Slot();
@@ -559,6 +565,7 @@ namespace SabreTools.Library.DatItems
ItemType.Extension => new Extension(),
ItemType.Feature => new Feature(),
ItemType.Instance => new Instance(),
ItemType.Location => new Location(),
ItemType.Media => new Media(),
ItemType.Port => new Port(),
ItemType.RamOption => new RamOption(),