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