Been getting this issue with my code, Im creatint a game using processing and Ive tried debugging it, im a beginner so idk how im supposed to fix it or where is causing the issue
i think this is the line causing the issue
try {
// System.out.println("Half of setup :D");
board.loadLevel(this.getClass().getResource("level1.txt").getPath().toLowerCase().replace("%20", " "));
// System.out.println("this prints :D");
} catch (IOException e) {
System.out.println("not working :(");
e.printStackTrace();
}
Help 😦