Exemplo n.º 1
0
Arquivo: Maze.cs Projeto: imann24/VR
 // Constructor to copy a current maze's contents
 public Maze(Maze maze)
 {
     this.pieces = maze.GetPieces();
     this.Name = maze.Name;
 }