DEADSOFTWARE

Fix code style
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
1 package ru.deadsoftware.cavecraft.game.objects;
3 import com.badlogic.gdx.math.Rectangle;
4 import com.badlogic.gdx.math.Vector2;
6 import java.io.Serializable;
8 public class Player implements Serializable {
10 public static int ANIM_SPEED = 6;
12 public Vector2 position;
13 public Vector2 moveX, moveY;
14 public int width, height, dir, texWidth;
15 public boolean canJump;
16 public int[] inventory;
17 public boolean flyMode = false;
19 public Player(Vector2 spawnPoint) {
20 position = spawnPoint.cpy();
21 moveX = new Vector2(0, 0);
22 moveY = new Vector2(0, 0);
23 width = 4;
24 height = 30;
25 texWidth = 8;
26 inventory = new int[9];
27 }
29 public Rectangle getRect() {
30 return new Rectangle(position.x + 2, position.y, width, height);
31 }
33 }