public static void Outline(Rectangle area, char character, AdvConsoleColor foreColor, AdvConsoleColor backColor = AdvConsoleColor.None) { Outline(area.X, area.Y, area.Width, area.Height, character, foreColor, backColor); }
public static void Outline(Rectangle area, char topCharacter, char sideCharacter, char topLeftCharacter, char topRightCharacter, char bottomLeftCharacter, char bottomRightCharacter, AdvConsoleColor foreColor, AdvConsoleColor backColor = AdvConsoleColor.None) { Outline(area.X, area.Y, area.Width, area.Height, topCharacter, sideCharacter, topLeftCharacter, topRightCharacter, bottomLeftCharacter, bottomRightCharacter, foreColor, backColor); }
public static void Fill(Rectangle area, char character, AdvConsoleColor foreColor, AdvConsoleColor backColor) { Fill(area.X, area.Y, area.Width, area.Height, character, foreColor, backColor); }