TiledMapPolylineContent.cs 363 B

12345678910111213
  1. // Copyright (c) Craftwork Games. All rights reserved.
  2. // Licensed under the MIT license.
  3. // See LICENSE file in the project root for full license information.
  4. using System.Xml.Serialization;
  5. namespace MonoGame.Extended.Content.Tiled;
  6. public class TiledMapPolylineContent
  7. {
  8. [XmlAttribute(AttributeName = "points")]
  9. public string Points { get; set; }
  10. }