mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 17:44:36 +00:00
13 lines
164 B
C#
13 lines
164 B
C#
using System;
|
|
|
|
namespace PckStudio.Models
|
|
{
|
|
[global::System.Flags]
|
|
public enum Effects : byte
|
|
{
|
|
None = 0,
|
|
FlipHorizontally = 1,
|
|
FlipVertically = 2
|
|
}
|
|
}
|