mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
15 lines
244 B
C#
15 lines
244 B
C#
using System;
|
|
|
|
namespace Example_Ambilight_full.TakeAsIs.Model
|
|
{
|
|
[Flags]
|
|
public enum BlackBarDetectionMode
|
|
{
|
|
None = 0,
|
|
Left = 1 << 0,
|
|
Right = 1 << 1,
|
|
Top = 1 << 2,
|
|
Bottom = 1 << 3,
|
|
}
|
|
}
|