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

21 lines
334 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 abstract class Entity {
2022-06-01 16:47:53 +02:00
private Vector2 position;
private String name;
public Entity(String name){
this.name = name;
}
public Vector2 getPosition() {
return position;
}
public String getName() {
return name;
}
2022-05-25 15:32:53 +02:00
}