DEADSOFTWARE

Rename position -> pos
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index ad5faafeba30e00907637a1fc1e4ed9aef77b6cd..74f7249c751030d1778e03b55b2c11acec8d1337 100644 (file)
@@ -9,7 +9,7 @@ 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;
@@ -17,7 +17,7 @@ public class Player implements Serializable {
     public boolean flyMode = false;
 
     public Player(Vector2 spawnPoint) {
-        position = spawnPoint.cpy();
+        pos = spawnPoint.cpy();
         move = new Vector2(0, 0);
         width = 4;
         height = 30;
@@ -26,7 +26,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);
     }
 
 }