DEADSOFTWARE

Rename inventory -> inv
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index 546fb6ef7aaa307b2a98b4ad686cfbcb894f1832..ad5faafeba30e00907637a1fc1e4ed9aef77b6cd 100644 (file)
@@ -10,20 +10,19 @@ public class Player implements Serializable {
     public static int ANIM_SPEED = 6;
 
     public Vector2 position;
-    public Vector2 moveX, moveY;
+    public Vector2 move;
     public int width, height, dir, texWidth;
     public boolean canJump;
-    public int[] inventory;
+    public int[] inv;
     public boolean flyMode = false;
 
     public Player(Vector2 spawnPoint) {
         position = spawnPoint.cpy();
-        moveX = new Vector2(0, 0);
-        moveY = new Vector2(0, 0);
+        move = new Vector2(0, 0);
         width = 4;
         height = 30;
         texWidth = 8;
-        inventory = new int[9];
+        inv = new int[9];
     }
 
     public Rectangle getRect() {