mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
13 lines
270 B
C#
13 lines
270 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Novation
|
|
{
|
|
/// <summary>
|
|
/// Represents a novation RGB-device.
|
|
/// </summary>
|
|
internal interface INovationRGBDevice : IRGBDevice
|
|
{
|
|
void Initialize(IDeviceUpdateTrigger updateTrigger);
|
|
}
|
|
}
|