mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
30 lines
693 B
C#
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
|
|
}
|
|
}
|