Progress on Maze Generation

* Finished implementing link planning for mazes. Doors aren't placed yet
because that's up to Decorators and those haven't been implemented yet.
* Added bounding walls to mazes.
* Added decay effects to mazes.
This commit is contained in:
SenseiKiwi
2014-04-14 22:24:59 -04:00
parent 906faf44eb
commit 81b48158bd
7 changed files with 544 additions and 122 deletions

View File

@@ -55,6 +55,13 @@ public class Point3D implements Serializable {
{
return this.z = z;
}
public void add(int x, int y, int z)
{
this.x += x;
this.y += y;
this.z += z;
}
@Override
public Point3D clone()