mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
17 lines
353 B
C#
17 lines
353 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
|
|
}
|
|
}
|