mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
13 lines
192 B
C#
13 lines
192 B
C#
using System;
|
|
|
|
namespace Example_Ambilight_full.TakeAsIs.Model
|
|
{
|
|
[Flags]
|
|
public enum FlipMode
|
|
{
|
|
None = 0,
|
|
Vertical = 1 << 0,
|
|
Horizontal = 1 << 1
|
|
}
|
|
}
|