DEADSOFTWARE

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