Bug fixes, debug tools for binary chunks.

This commit is contained in:
CloneTrooper1019
2020-09-10 00:08:12 -05:00
parent 1314be22bb
commit 8bcc5a9dfa
11 changed files with 204 additions and 80 deletions

View File

@ -18,8 +18,7 @@ namespace RobloxFiles
internal Dictionary<string, Instance> Instances = new Dictionary<string, Instance>();
internal HashSet<string> SharedStrings = new HashSet<string>();
private Dictionary<string, string> RawMetadata = new Dictionary<string, string>();
public Dictionary<string, string> Metadata => RawMetadata;
public Dictionary<string, string> Metadata { get; private set; } = new Dictionary<string, string>();
internal int RefCounter = 0;
public XmlRobloxFile()