using System.Drawing;
namespace CUE.NET.Devices.Keyboard.Brushes.Gradient
{
///
/// Represents a basic gradient.
///
public interface IGradient
{
///
/// Gets the color of the gradient on the specified offset.
///
/// The percentage offset to take the color from.
/// The color at the specific offset.
Color GetColor(float offset);
}
}