X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=2d5ffe8859340f30e92eaae6fb6a7191bdb83272;hb=1cc111dfe31e7f7098e01afeaa025e19f91aa624;hp=56aa9c1e4d098aef7d371f1be9083a9602b58484;hpb=50082e8304a80c41dd8b1c1d80142e7c91a2d924;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 56aa9c1..2d5ffe8 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -3,25 +3,27 @@ package ru.deadsoftware.cavecraft.game.objects; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; -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; - public int width, height, dir; + public int width, height, dir, texWidth; public boolean canJump; 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() {