795018e243
In case there are any future libraries written for Roblox in C#, I want to avoid running into any namespace collisions. Its best to keep everything pertaining to this project nested in its own unique namespace.
32 lines
754 B
C#
32 lines
754 B
C#
using System.Xml;
|
|
using RobloxFiles.DataTypes;
|
|
|
|
namespace RobloxFiles.XmlFormat.PropertyTokens
|
|
{
|
|
public class FacesToken : IXmlPropertyToken
|
|
{
|
|
public string Token => "Faces";
|
|
|
|
public bool ReadToken(Property prop, XmlNode token)
|
|
{
|
|
bool success = XmlPropertyTokens.ReadTokenGeneric<uint>(prop, PropertyType.Faces, token);
|
|
|
|
if (success)
|
|
{
|
|
uint value = (uint)prop.Value;
|
|
try
|
|
{
|
|
Faces faces = (Faces)value;
|
|
prop.Value = faces;
|
|
}
|
|
catch
|
|
{
|
|
success = false;
|
|
}
|
|
}
|
|
|
|
return success;
|
|
}
|
|
}
|
|
}
|