Пример #1
0
        static void Main(string[] args)
        {
            int ii = 0;

            Console.Clear();
            maps mp = new maps(80, 20);

            mp.grid(0, 0, mp.col, mp.count, 5, '.');
            mp.lrect(1, 1, 10, 10, ',');
            mp.rect(30, 5, 20, 10, ':');
            mp.fillcircle((mp.col / 2), (mp.count) / 2, 8, '-');
            mp.vstring(10, 2, "vertical");
            mp.pstring(1, 1, "lrect");
            mp.vcenter(8, "vcenter");
            mp.center(8, "circle");
            mp.Println();
        }