47112242e7
Holy cow, this took a lot of work. I think I may need to do a few more things before I consider this a 1.0 release, but I'm glad to have finally overcome this hurdle!
13 lines
271 B
C#
13 lines
271 B
C#
using System.Xml;
|
|
|
|
namespace RobloxFiles.XmlFormat
|
|
{
|
|
public interface IXmlPropertyToken
|
|
{
|
|
string Token { get; }
|
|
|
|
bool ReadProperty(Property prop, XmlNode token);
|
|
void WriteProperty(Property prop, XmlDocument doc, XmlNode node);
|
|
}
|
|
}
|