1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-10-30 19:29:17 +00:00
This commit is contained in:
2022-06-07 21:35:13 +02:00
parent ce9ff7ca53
commit 4e28801b38
10 changed files with 361 additions and 136 deletions

View File

@@ -2,10 +2,13 @@ package Entity;
import com.badlogic.gdx.math.Vector2;
import ch.hevs.gdx2d.lib.GdxGraphics;
public class Enemy extends Character{
public Enemy(String name) {
super(name);
public Enemy(String name, int x, int y, String img) {
super(name, x, y, img);
//TODO Auto-generated constructor stub
}
public void setPosition(int x, int y){
@@ -21,5 +24,11 @@ public class Enemy extends Character{
// TODO Auto-generated method stub
}
@Override
public void draw(GdxGraphics arg0) {
// TODO Auto-generated method stub
}
}