mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-10-30 19:29:17 +00:00
done
This commit is contained in:
@@ -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
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user