1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-07-07 17:01:10 +00:00
This commit is contained in:
Fastium
2022-06-15 19:52:31 +02:00
parent 24774190b6
commit 8c8c59411d
3 changed files with 56 additions and 9 deletions

View File

@ -6,8 +6,6 @@ public class Enemy extends Character{
private String branch;
public Enemy(String name, int x, int y, String img, String map, int pv, String branch) {
super(name, x, y, img, map);
//generate his text
@ -19,8 +17,6 @@ public class Enemy extends Character{
this.branch = branch;
this.pv = pv;
}
public void setPosition(int x, int y, String map){