Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapTileDrawOrder.cs
T
Lucas Girouard-StranksandDylan Wilson 9e359fb750 Tiled Rework (#331)
* Tiled Rework

* fix failing tests

* really fix failing tests
2017-01-18 20:46:38 +10:00

10 lines
163 B
C#

namespace MonoGame.Extended.Tiled
{
public enum TiledMapTileDrawOrder : byte
{
RightDown,
RightUp,
LeftDown,
LeftUp
}
}