Add support for Attributes!

This commit is contained in:
Max
2021-02-25 14:09:54 -06:00
parent 81d901cbcd
commit 83dd0af8d2
54 changed files with 1053 additions and 852 deletions

View File

@ -5,6 +5,8 @@ using System.ComponentModel;
using System.Linq;
using System.Xml;
using RobloxFiles.Tokens;
namespace RobloxFiles.XmlFormat
{
public static class XmlPropertyTokens
@ -27,7 +29,7 @@ namespace RobloxFiles.XmlFormat
foreach (IXmlPropertyToken propToken in propTokens)
{
var tokens = propToken.Token.Split(';')
var tokens = propToken.XmlPropertyToken.Split(';')
.Select(token => token.Trim())
.ToList();