27 lines
360 B
C#
27 lines
360 B
C#
namespace Qrakhen.Qamp.CLI;
|
|
|
|
[Flags]
|
|
public enum ConsoleMods
|
|
{
|
|
None = 0,
|
|
|
|
Red = 1,
|
|
Green = 2,
|
|
Blue = 4,
|
|
|
|
Yellow = Red | Green,
|
|
White = Red | Green | Blue,
|
|
|
|
|
|
|
|
Color = 1 << 10,
|
|
Bold = 1 << 20,
|
|
Italic = 1 << 21,
|
|
Underlined = 1 << 22,
|
|
Clear = 1 << 31,
|
|
}
|
|
|
|
public interface IConsolePainter
|
|
{
|
|
ConsoleMods Mods { get; set; }
|
|
} |