Example #1
0
        public static void Draw(DrawerLine Line, DrawerOptions Options)
        {
            DrawerContent Content = new DrawerContent();

            Content.AppendLine(Line);
            Draw(Content, Options);
        }
Example #2
0
        public static void Draw(String Text, ConsoleColor Color, Int32 Left, Int32 Top)
        {
            DrawerContent Content = new DrawerContent();
            DrawerOptions Options = new DrawerOptions()
            {
                Left = Left, Top = Top
            };
            DrawerLine Line = new DrawerLine(Text, Color);

            Content.AppendLine(Line);
            Draw(Content, Options);
        }