TiledMapTilesetGridContent.cs 561 B

12345678910111213141516171819
  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 TiledMapTilesetGridContent
  7. {
  8. [XmlAttribute(AttributeName = "orientation")]
  9. public TiledMapOrientationContent Orientation { get; set; }
  10. [XmlAttribute(AttributeName = "width")]
  11. public int Width { get; set; }
  12. [XmlAttribute(AttributeName = "height")]
  13. public int Height { get; set; }
  14. }