Files
UVtools/UVtools.Core/Enumerations.cs
T
Tiago Conceição 3ec6472706 WPF Progress
2020-09-26 03:52:57 +01:00

36 lines
685 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace UVtools.Core
{
public class Enumerations
{
public enum LayerRangeSelection : byte
{
None,
All,
Current,
Bottom,
Normal,
First,
Last
}
public enum FlipDirection : byte
{
Horizontally,
Vertically,
Both,
}
public enum Anchor : byte
{
TopLeft, TopCenter, TopRight,
MiddleLeft, MiddleCenter, MiddleRight,
BottomLeft, BottomCenter, BottomRight,
None
}
}
}