| 123456789101112131415 |
- // 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.Xml.Serialization;
- namespace MonoGame.Extended.Content.Tiled;
- public enum TiledMapTileDrawOrderContent : byte
- {
- [XmlEnum(Name = "right-down")] RightDown,
- [XmlEnum(Name = "right-up")] RightUp,
- [XmlEnum(Name = "left-down")] LeftDown,
- [XmlEnum(Name = "left-up")] LeftUp
- }
|