A tic tac toe game with Java, using Javafx as the GUI. You need javafx libraries installed to be able to run it
It's currently a 2 player game
src/main
├── java
│ ├── com
│ │ └── example
│ │ └── tictactoe
│ │ ├── loginController.java
│ │ ├── tictactoe.java
│ │ └── tictactoeController.java
│ └── module-info.java
└── resources
├── com
│ └── example
│ └── tictactoe
│ ├── login.css
│ ├── login.fxml
│ ├── tictactoe-view.fxml
│ └── tictactoecss.css
└── images
├── o.png
├── tic.png
└── x.png