private List<RaceMap> loadMaps()
{
List<RaceMap> maps = new ArrayList<RaceMap>();
try {
maps.add(new RaceMap(FileSystems.getDefault().getPath("map00.txt")));
maps.add(new RaceMap(FileSystems.getDefault().getPath("map01.txt")));
maps.add(new RaceMap(FileSystems.getDefault().getPath("map02.txt")));
} catch (IOException e) {
logger.log(Level.WARNING, "Unable to load all maps.", e);
}
return maps;