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