Files
MonoGame.Extended/source/MonoGame.Extended.Tiled/Serialization/TiledMapPolygonContent.cs
T

10 lines
228 B
C#

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