Files
MonoGame.Extended/Source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapPolygonContent.cs
T

10 lines
231 B
C#

using System.Xml.Serialization;
namespace MonoGame.Extended.Content.Pipeline.Tiled
{
public class TiledMapPolygonContent
{
[XmlAttribute(AttributeName = "points")]
public string Points { get; set; }
}
}