Beispiel #1
0
 // Constructor to copy a current maze's contents
 public Maze(Maze maze)
 {
     this.pieces = maze.GetPieces();
     this.Name = maze.Name;
 }