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

namespace MonoGame.Extended.Tiled.Serialization
{
    public enum TiledMapOrientationContent : byte
    {
        [XmlEnum(Name = "orthogonal")] Orthogonal,
        [XmlEnum(Name = "isometric")] Isometric,
        [XmlEnum(Name = "staggered")] Staggered,
		[XmlEnum(Name = "hexagonal")] Hexagonal
    }
}