Maze generation: Difference between revisions

m
Line 16:
 
enum {visited = 1, north = 2, east = 4, south = 8, west = 16};
struct cell { int c, r, m; }
const w = 11, h = 8;
 
struct cell { int c, r, m; }
cell[][] maze;
 
Anonymous user