From 4b5263221aeb2a565028ef891f4d4c5fbb5e6c8c Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sat, 10 Sep 2016 10:23:30 +0200 Subject: [PATCH] Removed accidentally added PositionedLed, added full list of LedIds --- CUE.NET.csproj | 1 + Devices/Generic/PositionedCorsairLed.cs | 29 ------------------------- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 Devices/Generic/PositionedCorsairLed.cs diff --git a/CUE.NET.csproj b/CUE.NET.csproj index d0d8a00..bb48f86 100644 --- a/CUE.NET.csproj +++ b/CUE.NET.csproj @@ -51,6 +51,7 @@ + diff --git a/Devices/Generic/PositionedCorsairLed.cs b/Devices/Generic/PositionedCorsairLed.cs deleted file mode 100644 index a3e1077..0000000 --- a/Devices/Generic/PositionedCorsairLed.cs +++ /dev/null @@ -1,29 +0,0 @@ -// ReSharper disable MemberCanBePrivate.Global -// ReSharper disable UnusedAutoPropertyAccessor.Global -// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global - -using System.Drawing; - -namespace CUE.NET.Devices.Generic -{ - public class PositionedCorsairLed : CorsairLed - { - #region Properties & Fields - - /// - /// Gets a rectangle representing the physical location of the led. - /// - public RectangleF LedRectangle { get; } - - #endregion - - #region Constructors - - internal PositionedCorsairLed(RectangleF ledRectangle) - { - this.LedRectangle = ledRectangle; - } - - #endregion - } -}