Roblox-File-Format/Interfaces/IXmlPropertyToken.cs
2019-02-04 13:30:33 -06:00

16 lines
309 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace RobloxFiles.XmlFormat
{
public interface IXmlPropertyToken
{
string Token { get; }
bool ReadToken(Property prop, XmlNode token);
}
}