String scoresPath = "Scores/Scores";
String trophiesPath = "Trophies";
try {
scoreManager = new ScoreManager(new File(this.getClass().getResource(scoresPath).toURI()));
trophyManager = new TrophyManager(new File(this.getClass().getResource(trophiesPath).toURI()));
} catch(URISyntaxException e) {
e.printStackTrace();
}
}