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

namespace MonoGame.Extended.Tiled.Serialization
{
	public enum TiledMapStaggerIndexContent : byte
	{
		[XmlEnum("even")]Even,
		[XmlEnum("odd")]Odd
	}
}