Skip to content
Snippets Groups Projects
Commit 8cae2c88 authored by qingyuw2's avatar qingyuw2
Browse files

minor fix

parent b0659988
Branches assignment1.1
No related tags found
No related merge requests found
......@@ -5,16 +5,16 @@ import java.util.concurrent.TimeUnit;
public class startGame {
public static void main(String[] args) throws InterruptedException {
System.out.println("Welcome to UNO! How many player will play?");
// Game game = new Game(3);
// game.printCurrentGameState();
// TimeUnit.SECONDS.sleep(5);
// game.setTurn(1);
// game.printCurrentGameState();
// TimeUnit.SECONDS.sleep(5);
// game.setTurn(2);
// game.printCurrentGameState();
// game.printWildSelection();
// game.printReshuffle();
// game.printGameEnd();
Game game = new Game(3);
game.printCurrentGameState();
TimeUnit.SECONDS.sleep(5);
game.setTurn(1);
game.printCurrentGameState();
TimeUnit.SECONDS.sleep(5);
game.setTurn(2);
game.printCurrentGameState();
game.printWildSelection();
game.printReshuffle();
game.printGameEnd();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment