mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
10 lines
232 B
C#
10 lines
232 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public class TiledMapPolylineContent
|
|
{
|
|
[XmlAttribute(AttributeName = "points")]
|
|
public string Points { get; set; }
|
|
}
|
|
} |