Ejemplo n.º 1
0
 public void CheckLinks()
 {
     for (int row = 0; row < g.PSIZE; row++)
     {
         for (int col = 0; col < g.PSIZE; col++)
         {
             ClearValues();
             traverseLinks(row, col);
             Console.WriteLine(_layer.LayerString());
             Console.ReadKey();
         }
     }
 }
Ejemplo n.º 2
0
        } // BuildPuzzle

        public void PrintPuzzle()
        {
            Console.WriteLine(_layer.LayerString());
            g.Pause();
        }