1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-10-30 03: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

View File

@@ -11,16 +11,6 @@ public class FightData {
private File file;
private static final String REGEX = ",";
/*
public static void main(String[] args) {
FightData d = new FightData("enemi");
d.readFile();
for(Attack a : d.attacks){
System.out.println(a);
}
}
*/
public FightData(String name) {
file = new File("./resources/Battle/Fight/" + name + ".csv");
}
@@ -42,9 +32,12 @@ public class FightData {
bf.close();
} catch (Exception e) {
} catch (Exception e) {
e.printStackTrace();
}
}
}