DEADSOFTWARE

Fix bugs
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / GameWorld.java
index d84faa32f8b7ae495d0003b1557b3f6c5a363f06..a58a73bb1991fb4a485f806ff61c5df26d118de7 100644 (file)
@@ -1,6 +1,5 @@
 package ru.deadsoftware.cavecraft.game;
 
-import com.badlogic.gdx.math.Vector2;
 import ru.deadsoftware.cavecraft.game.objects.Drop;
 
 public class GameWorld {
@@ -124,17 +123,6 @@ public class GameWorld {
         placeToBackground(x, y, 0);
     }
 
-    public Vector2 getSpawnPoint() {
-        int x = 0, y = 0;
-        while (true) {
-            y++;
-            if (getForeMap(x, y) > 0 && GameItems.getBlock(getForeMap(x, y)).coll) break;
-        }
-        x = x * 16 + 4;
-        y = y * 16 - 32;
-        return new Vector2(x, y);
-    }
-
     public void generate(int w, int h) {
         WIDTH = w;
         HEIGHT = h;