mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-04-16 12:36:03 +00:00
14 lines
286 B
Java
14 lines
286 B
Java
package Text;
|
|
|
|
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;
|
|
}
|
|
|
|
}
|