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

26 lines
448 B
C#

using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Brushes
{
public class GradientStop
{
#region Properties & Fields
public float Offset { get; set; }
public Color Color { get; set; }
#endregion
#region Constructors
public GradientStop(float offset, Color color)
{
this.Offset = offset;
this.Color = color;
}
#endregion
}
}