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

xp modification

This commit is contained in:
Fastium
2022-06-13 23:11:17 +02:00
parent b4a899bdcd
commit 744b160542
5 changed files with 27 additions and 20 deletions

View File

@ -9,7 +9,7 @@ public class Attack {
String answer4;
public String[] s;
float xp;
private int xp;
Attack(String attack, String answer1,String answer2,String answer3, String answer4, float xp){
this.attack = attack;
@ -38,4 +38,8 @@ public class Attack {
return answer1;
}
public int getXp() {
return xp;
}
}