TIC TAC TOE
does it need any explanation??
a simple game that all we know it. it's a good game for playing together.
it's really fun and make you feel better and play with your friend and win the competition
hahahahaha.....
the rules are simple:
first person who has 4 element in following each other without any interrupt
is the winner.
4 element that vertically,horizontally and oblique are connecting to each other
the first Realise of the game is: 2023-06-25
the last update of the game is: 2023-06-25
the current version is :1.0.0
for run the game clone the project to your local and try to run the Application class
as the code written by the javaFx (The framework of Java) the Application is someThing like this
public class Application extends javafx.application.Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(Application.class.getResource("application.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 858, 590);
stage.setTitle("Tic Tac Toe");
stage.setScene(scene);
stage.centerOnScreen();
stage.show();
}
public static void main(String[] args) throws UnsupportedAudioFileException, LineUnavailableException, IOException {
launch();
}
}
if you use any IDE just run the Application class and if you want to use terminal run this command
$javac Application.java
$java Applicatoin