mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
15 lines
314 B
C#
15 lines
314 B
C#
#pragma warning disable 1591
|
|
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
namespace RGB.NET.Devices.Novation;
|
|
|
|
/// <summary>
|
|
/// Represents the color-capabilities of a novation device.
|
|
/// </summary>
|
|
public enum NovationColorCapabilities
|
|
{
|
|
None,
|
|
RGB,
|
|
LimitedRG
|
|
} |