TiledMapTileDrawOrderContent.cs 464 B

123456789101112131415
  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 enum TiledMapTileDrawOrderContent : byte
  7. {
  8. [XmlEnum(Name = "right-down")] RightDown,
  9. [XmlEnum(Name = "right-up")] RightUp,
  10. [XmlEnum(Name = "left-down")] LeftDown,
  11. [XmlEnum(Name = "left-up")] LeftUp
  12. }