TiledMapTileDrawOrder.cs 163 B

12345678910
  1. namespace MonoGame.Extended.Tiled
  2. {
  3. public enum TiledMapTileDrawOrder : byte
  4. {
  5. RightDown,
  6. RightUp,
  7. LeftDown,
  8. LeftUp
  9. }
  10. }