mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
12 lines
337 B
C#
12 lines
337 B
C#
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
|
|
}
|
|
} |