DEADSOFTWARE

Inspect code
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / GameWorld.java
index e921b98138ceaabcab6db3d9dff559e4aa9113a0..0c4435045898d292016c756237a3adb758471ecd 100644 (file)
@@ -9,9 +9,10 @@ import static ru.deadsoftware.cavedroid.GameScreen.GP;
 @SuppressWarnings("WeakerAccess")
 public class GameWorld {
 
-    private int WIDTH, HEIGHT;
-    private int[][] foreMap;
-    private int[][] backMap;
+    private final int WIDTH;
+    private final int HEIGHT;
+    private final int[][] foreMap;
+    private final int[][] backMap;
 
     GameWorld(int width, int height) {
         WIDTH = width;