mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
7 lines
145 B
C#
7 lines
145 B
C#
namespace Terminal.Gui.Drawing.Quant;
|
|
|
|
public interface IPaletteBuilder
|
|
{
|
|
List<Color> BuildPalette (List<Color> colors, int maxColors);
|
|
}
|