package StevenDimDoors.experimental; import java.util.ArrayList; public class MazeDesign { private PartitionNode root; private DirectedGraph layout; public MazeDesign(PartitionNode root, DirectedGraph layout) { this.root = root; this.layout = layout; } public PartitionNode getRootPartition() { return root; } public DirectedGraph getLayout() { return layout; } public int width() { return root.width(); } public int height() { return root.height(); } public int length() { return root.length(); } }