mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
10 lines
236 B
C#
10 lines
236 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Tiled.Serialization
|
|
{
|
|
public enum TiledMapObjectDrawOrderContent : byte
|
|
{
|
|
[XmlEnum(Name = "topdown")] TopDown,
|
|
[XmlEnum(Name = "index")] Manual
|
|
}
|
|
} |