/**
 * Contains static methods to make the first sample maze.
 *
 */
public class MazeGenerator {
  /**
   * Make a simple 3x3 maze.
   *
   * <pre>
   * 0 1 0 
   * 0 1 0
   * 0 1 1
   * </pre>
   *
   * @return the maze
   */
  public static Maze makeSimpleMaze() {
    int[][] matrix = new int[][]{ new int[]{0,1,0},
      new int[]{0,1,0}, new int[]{0,1,1}
    };
    Maze m = new Maze(matrix, 0, 1);
    return m;
  }
}
