using System.Collections.Generic; using RGB.NET.Core; namespace RGB.NET.Devices.WS281X { /// /// Marker interface for WS281X device definitions. /// // ReSharper disable once InconsistentNaming public interface IWS281XDeviceDefinition { /// /// Gets the devices defined by this definition. /// /// The initialized devices defined by this definition. IEnumerable CreateDevices(); } }