mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
11 lines
297 B
C#
11 lines
297 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace MonoGame.Extended.Content.Pipeline.Tiled
|
|
{
|
|
public enum TiledMapOrientationContent : byte
|
|
{
|
|
[XmlEnum(Name = "orthogonal")] Orthogonal,
|
|
[XmlEnum(Name = "isometric")] Isometric,
|
|
[XmlEnum(Name = "staggered")] Staggered
|
|
}
|
|
} |