Files
MonoGame.Extended/Source/MonoGame.Extended.Graphics/FlipFlags.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

14 lines
234 B
C#

using System;
namespace MonoGame.Extended.Graphics
{
[Flags]
public enum FlipFlags : byte
{
None = 0,
FlipDiagonally = 1 << 0,
FlipVertically = 1 << 1,
FlipHorizontally = 1 << 2
}
}