summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Tiled/Serialization/TiledMapPolygonContent.cs
blob: e4a3d5e3130095a5fab8e84c34991eca69febf67 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Xml.Serialization;

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