1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00
CUE.NET/Devices/Generic/PositionedCorsairLed.cs
2016-09-10 10:11:14 +02:00

30 lines
693 B
C#

// 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
}
}