Inspection and Cleanup
This commit is contained in:
@@ -17,9 +17,7 @@ public class CircularTerrainGenerator implements Generator {
|
||||
protected final Random rnd = new Random();
|
||||
private final int size;
|
||||
|
||||
protected final Pos mapCenter = new Pos(0, 50, 0);
|
||||
|
||||
private boolean generatePlate;
|
||||
private final boolean generatePlate;
|
||||
|
||||
public CircularTerrainGenerator(int size, boolean generatePlate) {
|
||||
this.size = size;
|
||||
|
||||
@@ -16,10 +16,10 @@ import java.util.Random;
|
||||
public class SquareTerrainGenerator implements Generator {
|
||||
protected final Random rnd = new Random();
|
||||
|
||||
private int width;
|
||||
private int length;
|
||||
private final int width;
|
||||
private final int length;
|
||||
|
||||
private boolean generatePlate;
|
||||
private final boolean generatePlate;
|
||||
|
||||
protected final Pos mapStart = new Pos(0, 50, 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user