X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=546fb6ef7aaa307b2a98b4ad686cfbcb894f1832;hp=1dc516bdd9e761b57124c18d6777df4364d7418d;hb=bea2a3c5b967bcd90ccd83e08e833d58449e963a;hpb=503cd1720db3f53b7cbf7e3819968044de29a465 diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 1dc516b..546fb6e 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -2,9 +2,12 @@ package ru.deadsoftware.cavecraft.game.objects; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; -import ru.deadsoftware.cavecraft.Assets; -public class Player { +import java.io.Serializable; + +public class Player implements Serializable { + + public static int ANIM_SPEED = 6; public Vector2 position; public Vector2 moveX, moveY; @@ -13,21 +16,18 @@ public class Player { public int[] inventory; public boolean flyMode = false; - public Player() { - position = new Vector2(0, 0); + public Player(Vector2 spawnPoint) { + position = spawnPoint.cpy(); moveX = new Vector2(0, 0); moveY = new Vector2(0, 0); width = 4; height = 30; texWidth = 8; inventory = new int[9]; - inventory[0] = 1; - inventory[1] = 2; - inventory[2] = 3; } public Rectangle getRect() { - return new Rectangle(position.x+2, position.y, width, height); + return new Rectangle(position.x + 2, position.y, width, height); } }