1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-07-07 17:01:10 +00:00

enemy integration done, but big bug when move

This commit is contained in:
2022-06-10 16:39:50 +02:00
parent 1466ba041a
commit 56d57ca17c
10 changed files with 48 additions and 47 deletions

View File

@ -32,10 +32,9 @@ public abstract class Character extends Entity{
protected int pv;
public Character(String name, int x, int y, String img){
super(name, x, y);
public Character(String name, int x, int y, String img, String map){
super(name, x, y, map);
this.img = img;
}
@Override