DEADSOFTWARE

Complete game save
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index 18188690f75f33a35dd2445e6ff3086681a5bd51..9e2f3dd55238b18d6890794ecf7260b029e28729 100644 (file)
@@ -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,8 +16,8 @@ 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;