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