mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-11 19:12:31 +02:00
36 lines
685 B
C#
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
|
|
}
|
|
}
|
|
}
|