1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-10-29 19:11:05 +00:00

dialog ok

This commit is contained in:
Fastium
2022-06-10 19:33:24 +02:00
parent 4c47120c40
commit 0fe608e183
10 changed files with 149 additions and 69 deletions

12
src/Text/Line.java Normal file
View File

@@ -0,0 +1,12 @@
package Text;
public class Line {
public String line;
public boolean attackOn;
Line( String line, boolean attackOn){
this.line = line;
this.attackOn = attackOn;
}
}