| 1234567891011121314151617181920212223242526272829 |
- // Copyright (c) Craftwork Games. All rights reserved.
- // Licensed under the MIT license.
- // See LICENSE file in the project root for full license information.
- using System.Collections.Generic;
- using System.Xml.Serialization;
- namespace MonoGame.Extended.Content.Tiled;
- public class TiledMapTileLayerDataChunkContent
- {
- [XmlAttribute(AttributeName = "x")]
- public int X { get; set; }
- [XmlAttribute(AttributeName = "y")]
- public int Y { get; set; }
- [XmlAttribute(AttributeName = "width")]
- public int Width { get; set; }
- [XmlAttribute(AttributeName = "height")]
- public int Height { get; set; }
- [XmlElement(ElementName = "tile")]
- public List<TiledMapTileContent> Tiles { get; set; }
- [XmlText]
- public string Value { get; set; }
- }
|