1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 09:08:34 +00:00

26 lines
457 B
C#

using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Brushes.Gradient
{
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
}
}