IFill.cs 352 B

1234567891011121314
  1. namespace Terminal.Gui;
  2. /// <summary>
  3. /// Describes an area fill (e.g. solid color or gradient).
  4. /// </summary>
  5. public interface IFill
  6. {
  7. /// <summary>
  8. /// Returns the color that should be used at the given point
  9. /// </summary>
  10. /// <param name="point"></param>
  11. /// <returns></returns>
  12. Color GetColor (Point point);
  13. }