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

namespace MonoGame.Extended.Tiled.Serialization
{
	public enum TiledMapStaggerAxisContent : byte
	{
		[XmlEnum("x")]X,
		[XmlEnum("y")]Y
	}
}