using RGB.NET.Core;
namespace RGB.NET.Brushes.Gradients
{
///
/// Represents a basic gradient.
///
public interface IGradient
{
///
/// Gets the of the on the specified offset.
///
/// The percentage offset to take the from.
/// The at the specific offset.
Color GetColor(double offset);
}
}