mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
14 lines
234 B
C#
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
|
|
}
|
|
}
|