1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-03-13 06:14:32 +00:00
PokeHES/src/Text/Line.java
2022-06-19 23:29:02 +02:00

19 lines
361 B
Java

package Text;
/**
* @author Rémi Heredero
* @author Yann Sierro
* @version 1.0.0
*/
public class Line {
public String line;
public boolean attackOn;
//in the battle screen the line is played and attack on is used by the button
Line( String line, boolean attackOn){
this.line = line;
this.attackOn = attackOn;
}
}