// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedMember.Global
using RGB.NET.Core;
namespace RGB.NET.Devices.DynamicLighting;
///
///
/// Represents a Dynamic Lighting Scene-device.
///
public sealed class DynamicLightingSceneRGBDevice : DynamicLightingRGBDevice, IUnknownDevice
{
#region Properties & Fields
///
protected override LedId ReferenceLedId => LedId.Unknown1;
#endregion
#region Constructors
///
///
/// Initializes a new instance of the class.
///
/// The meta data for this device.
/// The queue used to update this device.
internal DynamicLightingSceneRGBDevice(DynamicLightingSceneRGBDeviceInfo info, DynamicLightingDeviceUpdateQueue updateQueue)
: base(info, updateQueue)
{ }
#endregion
}