namespace Terminal.Gui;
///
/// Implementation of that assumes best
/// case scenario (full support including transparency with 10x20 resolution).
///
public class AssumeSupportDetector : ISixelSupportDetector
{
///
public SixelSupportResult Detect ()
{
return new()
{
IsSupported = true,
MaxPaletteColors = 256,
Resolution = new (10, 20),
SupportsTransparency = true
};
}
}