using CUE.NET.Devices.Generic;
namespace CUE.NET.Gradients
{
///
/// 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.
CorsairColor GetColor(float offset);
}
}