DEADSOFTWARE

Add player and physics
[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 public class Player {
8 public Vector2 position;
9 public Vector2 moveX, moveY;
10 public int width, height, dir;
12 public Player() {
13 position = new Vector2(0, 0);
14 moveX = new Vector2(0, 0);
15 moveY = new Vector2(0, 0);
16 width = 8;
17 height = 30;
18 }
20 public Rectangle getRect() {
21 return new Rectangle(position.x, position.y, width, height);
22 }
24 }