package ru.deadsoftware.cavecraft.game; public class WorldGen { private static int[][] foreMap, backMap; static void genWorld(int width, int height) { foreMap = new int[width][height]; backMap = new int[width][height]; for (int x=0; x