DEADSOFTWARE

Add inventory bar
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index 0c5581a7ee2711999f526e52bbc77cafa4385a2e..2953d940989febecabc83467aff77e0de7c98623 100644 (file)
@@ -9,6 +9,7 @@ public class Player {
     public Vector2 moveX, moveY;
     public int width, height, dir;
     public boolean canJump;
+    public int[] inventory;
 
     public Player() {
         position = new Vector2(0, 0);
@@ -16,6 +17,10 @@ public class Player {
         moveY = new Vector2(0, 0);
         width = 8;
         height = 30;
+        inventory = new int[9];
+        inventory[0] = 1;
+        inventory[1] = 2;
+        inventory[2] = 3;
     }
 
     public Rectangle getRect() {