Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapTileFlipFlags.cs
T
Lucas Girouard-StranksandDylan Wilson b22a062147 Fix Tiled Problems (#332)
* Add Tiled Content Pipeline library to NuGet

* Update Tiled NuGet package elements.

* Remove dependency on Graphics

* Update csproj for removal of Graphics dependency

* Fix build errors

* Fix problems
2017-01-20 21:08:14 +10:00

14 lines
320 B
C#

using System;
namespace MonoGame.Extended.Tiled
{
[Flags]
public enum TiledMapTileFlipFlags : uint
{
None = 0,
FlipDiagonally = 0x20000000,
FlipVertically = 0x40000000,
FlipHorizontally = 0x80000000,
All = FlipDiagonally | FlipVertically | FlipHorizontally
}
}