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

add xp and pv on display

This commit is contained in:
Fastium
2022-06-16 15:46:34 +02:00
parent a5c3c8bac5
commit cad32fde7d
10 changed files with 42 additions and 9 deletions

View File

@@ -1,11 +1,14 @@
package Game;
import Entity.Enemy;
import Entity.Player;
import Text.TextEnemy;
public class Battle {
private Enemy e;
public Enemy e;
public Player player;
public TextEnemy textEnemy;
private int lineSpeech;
@@ -140,4 +143,7 @@ public class Battle {
public void setEnemy(Enemy e){
this.e = e;
}
public void setPlayer(Player p){
this.player = p;
}
}