level.c | 67 static void make_maze(short, short, short, short, short, short); 500 make_maze(get_rand(rooms[j].top_row+1, rooms[j].bottom_row-1), 645 make_maze(short r, short c, short tr, short br, short lc, short rc) function in typeref:typename:void 675 make_maze((r-1), c, tr, br, lc, rc); 684 make_maze((r+1), c, tr, br, lc, rc); 693 make_maze(r, (c-1), tr, br, lc, rc); 702 make_maze(r, (c+1), tr, br, lc, rc);
|