1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Removed accidentally added PositionedLed, added full list of LedIds

This commit is contained in:
Darth Affe 2016-09-10 10:23:30 +02:00
parent 8ab40180b3
commit 4b5263221a
2 changed files with 1 additions and 29 deletions

View File

@ -51,6 +51,7 @@
<Compile Include="Devices\Generic\Enums\CorsairAccessMode.cs" />
<Compile Include="Devices\Generic\Enums\CorsairDeviceCaps.cs" />
<Compile Include="Devices\Generic\Enums\CorsairDeviceType.cs" />
<Compile Include="Devices\Generic\Enums\CorsairLedId.cs" />
<Compile Include="Devices\Generic\EventArgs\ExceptionEventArgs.cs" />
<Compile Include="Brushes\AbstractBrush.cs" />
<Compile Include="Devices\Generic\EventArgs\LedsUpdatedEventArgs.cs" />

View File

@ -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
/// <summary>
/// Gets a rectangle representing the physical location of the led.
/// </summary>
public RectangleF LedRectangle { get; }
#endregion
#region Constructors
internal PositionedCorsairLed(RectangleF ledRectangle)
{
this.LedRectangle = ledRectangle;
}
#endregion
}
}