package ch.zhaw.pm2.racetrack; import java.io.FileNotFoundException; public class Main { public static void main(String[] args) throws InvalidTrackFormatException, FileNotFoundException { UserInterface userInterface = new UserInterface("Hello and Welcome"); Game game = new Game(userInterface); if(game.initPhase()){ game.gamePhase(); int winner = game.getWinner(); } } }