mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
19 lines
562 B
C#
19 lines
562 B
C#
using System.Collections.Generic;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.WS281X
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for WS281X device definitions.
|
|
/// </summary>
|
|
// ReSharper disable once InconsistentNaming
|
|
public interface IWS281XDeviceDefinition
|
|
{
|
|
/// <summary>
|
|
/// Gets the devices defined by this definition.
|
|
/// </summary>
|
|
/// <returns>The initialized devices defined by this definition.</returns>
|
|
IEnumerable<IRGBDevice> CreateDevices(IDeviceUpdateTrigger updateTrigger);
|
|
}
|
|
}
|