mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
35 lines
626 B
C#
35 lines
626 B
C#
using System.Drawing;
|
|
|
|
namespace CUE.NET.Wrapper
|
|
{
|
|
public class CorsairLed
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public bool IsDirty { get; set; } = false;
|
|
|
|
private Color _color = Color.Black;
|
|
public Color Color
|
|
{
|
|
get { return _color; }
|
|
set
|
|
{
|
|
if (_color != value)
|
|
IsDirty = true;
|
|
|
|
_color = value;
|
|
}
|
|
}
|
|
|
|
//TODO DarthAffe 19.09.2015: Add effects and stuff
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairLed() { }
|
|
|
|
#endregion
|
|
}
|
|
}
|