Refactored Maze Generation to use RoomData

Rewrote portions of our maze generation code to use RoomData. This
provides an object that unifies all room data instead of having it
spread across various data structures and linked loosely by hash maps.
We'll need this to implement the remaining generation features.
This commit is contained in:
SenseiKiwi
2014-04-07 09:25:20 -04:00
parent 71fccfc1e4
commit d5e5e12cf9
6 changed files with 206 additions and 131 deletions

View File

@@ -0,0 +1,6 @@
package StevenDimDoors.experimental;
public class MazeLinkData
{
}