public MazeIntegration()
 {
     _mazeLayout = new MazeLayout();
 }
 public MazeEmulator(IMazeIntegration mazeIntegration)
 {
     _mazeIntegration = mazeIntegration;
     _mazeLayout      = new MazeLayout();
 }