18 lines
441 B
Java
18 lines
441 B
Java
|
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();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|