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

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