summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Tiled/Serialization/TiledMapObjectDrawOrderContent.cs
blob: f4413756267dd9b0468f979b5f4340774ea76d01 (plain)
1
2
3
4
5
6
7
8
9
10
using System.Xml.Serialization;

namespace MonoGame.Extended.Tiled.Serialization
{
    public enum TiledMapObjectDrawOrderContent : byte
    {
        [XmlEnum(Name = "topdown")] TopDown,
        [XmlEnum(Name = "index")] Manual
    }
}