X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=9e2f3dd55238b18d6890794ecf7260b029e28729;hb=6ab2a53526f16de139d39a59c3d800e5f3013c68;hp=bcebde6f3d6198ae7ecba5185c4d3ff445ccabe6;hpb=40312aaac2ec8bd1247ad5979f7bd1d8e47ecae3;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 bcebde6..9e2f3dd 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -1,12 +1,13 @@ package ru.deadsoftware.cavecraft.game.objects; -import com.badlogic.gdx.math.RandomXS128; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; -import ru.deadsoftware.cavecraft.Assets; -import ru.deadsoftware.cavecraft.game.WorldGen; -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; @@ -15,8 +16,8 @@ public class Player { public int[] inventory; public boolean flyMode = false; - public Player(int x, int y) { - position = new Vector2(x, y); + public Player(Vector2 spawnPoint) { + position = spawnPoint.cpy(); moveX = new Vector2(0, 0); moveY = new Vector2(0, 0); width = 4;