212223242526272829
private int seed; private Random random = new Random(); public ForestTerrainMap(int seed){ this.hm = new FractalHexagonalHeightMap(seed); this.whm = new WaterHeightMap(seed, this.hm); this.seed = seed; }