mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
12 lines
276 B
C#
12 lines
276 B
C#
using System.Collections.Generic;
|
|
|
|
namespace RGB.NET.Core
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a special part of a <see cref="T:RGB.NET.Core.IRGBDevice" />.
|
|
/// </summary>
|
|
public interface IRGBDeviceSpecialPart : IEnumerable<Led>
|
|
{ }
|
|
}
|