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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user