Finalize NE resource table building

This commit is contained in:
Matt Nadareski
2022-11-07 09:38:34 -08:00
parent 3e5ae14a54
commit 008e1ad27b
2 changed files with 53 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.NewExecutable
{
@@ -30,6 +31,6 @@ namespace BurnOutSharp.Models.NewExecutable
/// Resource type and name strings are stored at the end of the
/// resource table.
/// </summary>
public ResourceTypeAndNameString[] TypeAndNameStrings;
public Dictionary<ushort, ResourceTypeAndNameString> TypeAndNameStrings;
}
}