DEADSOFTWARE

Start making survival mode
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index ad5faafeba30e00907637a1fc1e4ed9aef77b6cd..4c7d962ca37c86d2dae698016bd45b83aa350bdc 100644 (file)
@@ -9,15 +9,17 @@ public class Player implements Serializable {
 
     public static int ANIM_SPEED = 6;
 
-    public Vector2 position;
+    public Vector2 pos;
     public Vector2 move;
     public int width, height, dir, texWidth;
     public boolean canJump;
     public int[] inv;
     public boolean flyMode = false;
+    public int gameMode;
 
-    public Player(Vector2 spawnPoint) {
-        position = spawnPoint.cpy();
+    public Player(Vector2 spawnPoint, int gameMode) {
+        this.gameMode = gameMode;
+        pos = spawnPoint.cpy();
         move = new Vector2(0, 0);
         width = 4;
         height = 30;
@@ -26,7 +28,7 @@ public class Player implements Serializable {
     }
 
     public Rectangle getRect() {
-        return new Rectangle(position.x + 2, position.y, width, height);
+        return new Rectangle(pos.x + 2, pos.y, width, height);
     }
 
 }