mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
25 lines
814 B
C#
25 lines
814 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.OpenRGB;
|
|
|
|
/// <inheritdoc cref="AbstractRGBDevice{TDeviceInfo}" />
|
|
/// <summary>
|
|
/// Represents a generic OpenRGB Device.
|
|
/// </summary>
|
|
public abstract class AbstractOpenRGBDevice<TDeviceInfo> : AbstractRGBDevice<TDeviceInfo>, IOpenRGBDevice
|
|
where TDeviceInfo : OpenRGBDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AbstractOpenRGBDevice{TDeviceInfo}"/> class.
|
|
/// </summary>
|
|
/// <param name="info">The generic information provided by OpenRGB for this device.</param>
|
|
/// <param name="updateQueue">The queue used to update this device.</param>
|
|
protected AbstractOpenRGBDevice(TDeviceInfo info, IUpdateQueue updateQueue)
|
|
: base(info, updateQueue)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|