1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-03-14 14:54:33 +00:00
PokeHES/src/Entity/Player.java

32 lines
507 B
Java
Raw Normal View History

2022-05-25 15:32:53 +02:00
package Entity;
2022-06-01 16:47:53 +02:00
import com.badlogic.gdx.math.Vector2;
2022-05-25 15:32:53 +02:00
public class Player extends Character{
2022-06-01 16:47:53 +02:00
private int xp;
public Player(String name) {
super(name);
//TODO Auto-generated constructor stub
}
public void addXp(int xp){
}
public void move(int x, int y){
}
public void move(Vector2 vMove){
move((int)vMove.x, (int)vMove.y);
}
@Override
protected void removedPv(int pv) {
// TODO Auto-generated method stub
}
2022-05-25 15:32:53 +02:00
}