DatItem formats to own sub-namespace

This commit is contained in:
Matt Nadareski
2021-02-02 10:23:43 -08:00
parent 11fd354a47
commit c54b35db92
76 changed files with 79 additions and 42 deletions

View File

@@ -7,6 +7,7 @@ using System.Text;
using SabreTools.Core;
using SabreTools.Core.Tools;
using SabreTools.DatItems;
using SabreTools.DatItems.Formats;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Serialization;
@@ -314,7 +315,7 @@ namespace SabreTools.DatFiles.Formats
datItem = datItemObj.ToObject<SlotOption>();
break;
case ItemType.SoftwareList:
datItem = datItemObj.ToObject<DatItems.SoftwareList>();
datItem = datItemObj.ToObject<DatItems.Formats.SoftwareList>();
break;
case ItemType.Sound:
datItem = datItemObj.ToObject<Sound>();