X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=74f7249c751030d1778e03b55b2c11acec8d1337;hp=4a6c4d41682c36eca08ea7c288d3938df9f66acb;hb=be2690f1dee10f68a5ce6d576ace13c825ac5d15;hpb=84b8cd80e39699174969bfed0734e78b8ec09615 diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 4a6c4d4..74f7249 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -9,24 +9,24 @@ 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[] inventory; + public int[] inv; public boolean flyMode = false; public Player(Vector2 spawnPoint) { - position = spawnPoint.cpy(); + pos = spawnPoint.cpy(); move = new Vector2(0, 0); width = 4; height = 30; texWidth = 8; - inventory = new int[9]; + inv = new int[9]; } public Rectangle getRect() { - return new Rectangle(position.x + 2, position.y, width, height); + return new Rectangle(pos.x + 2, pos.y, width, height); } }