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