2022-03-11 12:08:17 +01:00
|
|
|
package ch.zhaw.pm2.racetrack;
|
|
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
2022-03-18 10:19:23 +01:00
|
|
|
public static void main(String[] args) throws InvalidTrackFormatException, FileNotFoundException, PositionVectorNotValid {
|
2022-03-11 12:08:17 +01:00
|
|
|
UserInterface userInterface = new UserInterface("Hello and Welcome");
|
|
|
|
Game game = new Game(userInterface);
|
|
|
|
|
|
|
|
if(game.initPhase()){
|
2022-03-18 10:00:28 +01:00
|
|
|
int winner = game.gamePhase();
|
2022-03-11 12:08:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|