1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-03-14 06:44:33 +00:00
PokeHES/src/Text/Line.java

14 lines
286 B
Java
Raw Normal View History

2022-06-10 19:33:24 +02:00
package Text;
public class Line {
public String line;
public boolean attackOn;
2022-06-16 23:29:36 +02:00
//in the battle screen the line is played and attack on is used by the button
2022-06-10 19:33:24 +02:00
Line( String line, boolean attackOn){
this.line = line;
this.attackOn = attackOn;
}
}