
// an invisible structure for holding maze state
// about a position
class cell
{
    boolean clear = true;	// this location has no wall
    boolean visited = false;	// we've seen this before
}





