DEADSOFTWARE

Add touch controls
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / GameProc.java
index cf70144d75948eeac988b7c517b12a8247d11d0a..6fc7dd956592fd37fe372bf8ef4e177de3ca77db 100644 (file)
@@ -15,13 +15,14 @@ public class GameProc {
 
     public int cursorX, cursorY;
     public int invSlot;
+    public int ctrlMode;
 
     public boolean isTouchDown = false;
     public int touchDownX, touchDownY;
     public long touchDownTime;
 
     public GameProc() {
-        world = new GameWorld(512,32);
+        world = new GameWorld(512,256);
         renderer = new GameRenderer(this);
         physics = new GamePhysics(this);
         player = new Player();