Пример #1
0
 public void Draw(int x, int y, ASCIIPage page)
 {
     for (int row = 0; row < page.H; row++)
     {
         for (int col = 0; col < page.W; col++)
         {
             Set(col + x, row + y, page.Get(col, row));
             SetColor(col + x, row + y, page.GetColor(col, row));
         }
     }
 }