namespace Terminal.Gui; /// /// Describes an area fill (e.g. solid color or gradient). /// public interface IFill { /// /// Returns the color that should be used at the given point /// /// /// Color GetColor (Point point); }