Effects.cfg parser

This commit is contained in:
2024-07-23 20:53:26 -05:00
parent 8eee7ca23e
commit a27f257f80
@@ -43,6 +43,9 @@ public class EffectsParser {
} }
public static String[] readLines(String filename) throws IOException { public static String[] readLines(String filename) throws IOException {
File effectsCfg = new File(EffectsPath); File effectsCfg = new File(EffectsPath);
for(String line : effectsCfg.list()){
int i = 0;
}
return effectsCfg.list(); return effectsCfg.list();