IFill.cs 344 B

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