Hi everyone, long time.
I have a question about something I'm working on in my spare time.
I need to draw a maze, but not a conventional 'corridor' maze. I have a multi-dimensional array of rooms that are connected.
In other words, a tree structure. Each room will have identical looking doors to it's parent and child nodes.
As a proof of concept, I want to do this in 2D, but eventually I'd like to make this a 3D game.
To win, you have to navigate to the root node, but drawing a tree, will make the game too easy to solve so I want to mix it up a bit in terms of how it looks.
My question is if any one has any ideas of how I can draw this so that it does not look like a tree structure?
Also, this has to be a tree structure in terms of code, I can't get around that.

