34642f5656
Support for binary files will be coming later.
20 lines
521 B
C#
20 lines
521 B
C#
using System.Xml;
|
|
|
|
namespace RobloxFiles.XmlFormat.PropertyTokens
|
|
{
|
|
public class DoubleToken : IXmlPropertyToken
|
|
{
|
|
public string Token => "double";
|
|
|
|
public bool ReadProperty(Property prop, XmlNode token)
|
|
{
|
|
return XmlPropertyTokens.ReadPropertyGeneric<double>(prop, PropertyType.Double, token);
|
|
}
|
|
|
|
public void WriteProperty(Property prop, XmlDocument doc, XmlNode node)
|
|
{
|
|
node.InnerText = prop.Value.ToInvariantString();
|
|
}
|
|
}
|
|
}
|