team02-AngryNerds-projekt1-.../src/main/java/ch/zhaw/pm2/racetrack/Main.java

18 lines
515 B
Java
Raw Normal View History

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);
}
}