namespace CC_Functions.Core { /// /// Characters for use in CC-Functions.CommandLine /// public static class SpecialChars { /// /// The space character /// public const char Empty = ' '; /// /// Wall with two lines /// public static class TwoLineSimple { // 1 connectors /// /// Wall with specified points /// public const char Up = '║'; /// /// Wall with specified points /// public const char Down = '║'; /// /// Wall with specified points /// public const char Left = '═'; /// /// Wall with specified points /// public const char Right = '═'; // 2 connectors /// /// Wall with specified points /// public const char UpDown = '║'; /// /// Wall with specified points /// public const char LeftRight = '═'; /// /// Wall with specified points /// public const char DownRight = '╔'; /// /// Wall with specified points /// public const char UpRight = '╚'; /// /// Wall with specified points /// public const char DownLeft = '╗'; /// /// Wall with specified points /// public const char UpLeft = '╝'; // 3 connectors /// /// Wall with specified points /// public const char UpDownLeft = '╣'; /// /// Wall with specified points /// public const char UpDownRight = '╠'; /// /// Wall with specified points /// public const char UpLeftRight = '╩'; /// /// Wall with specified points /// public const char DownLeftRight = '╦'; // 4 connectors /// /// Wall with specified points /// public const char UpDownLeftRight = '╬'; } /// /// Simple line /// public static class OneLineSimple { // 1 connectors /// /// Line with specified points /// public const char Up = '╵'; /// /// Line with specified points /// public const char Down = '╷'; /// /// Line with specified points /// public const char Left = '╴'; /// /// Line with specified points /// public const char Right = '╶'; // 2 connectors public const char UpDown = '│'; /// /// Line with specified points /// public const char LeftRight = '─'; /// /// Line with specified points /// public const char DownRight = '┌'; /// /// Line with specified points /// public const char UpRight = '└'; /// /// Line with specified points /// public const char DownLeft = '┐'; /// /// Line with specified points /// public const char UpLeft = '┘'; // 3 connectors /// /// Line with specified points /// public const char UpDownLeft = '┤'; /// /// Line with specified points /// public const char UpDownRight = '├'; /// /// Line with specified points /// public const char UpLeftRight = '┴'; /// /// Line with specified points /// public const char DownLeftRight = '┬'; // 4 connectors /// /// Line with specified points /// public const char UpDownLeftRight = '┼'; } } }