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