mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
26 lines
896 B
C#
26 lines
896 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 : AbstractOpenRGBDeviceInfo
|
|
{
|
|
#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
|
|
}
|
|
}
|