Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified players.dat
Binary file not shown.
3 changes: 2 additions & 1 deletion src/main/java/co/ppg2/controllers/GameController.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,6 @@ public void updateLeaderboard(char token) {




//TODO: Remove excess space so you dont have to scroll that much
//TODO: Maybe make a button that reset the game so you don't have to keep reopening the game or just make it automatically do it

2 changes: 1 addition & 1 deletion src/main/java/co/ppg2/services/GameTimer.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ public void run() {




// TODO: maybe add a in game clock for more multithreading use


4 changes: 2 additions & 2 deletions src/main/java/co/ppg2/views/GameView.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public void launchGame() {
borderPane.setCenter(gridPane);
borderPane.setBottom(labelInstructions);


Scene scene = new Scene(borderPane, 450, 170);
// I changed the size so the user can see the full window without resizing it
Scene scene = new Scene(borderPane, 305, 320);
primaryStage.setTitle("TicTacToe");
primaryStage.setScene(scene);
primaryStage.show();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/co/ppg2/views/LabelWin.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ public LabelWin(String text) {
}
}


// TODO: LableWin is not being used so I would delete it