Skip to content

amirhossein2831/Tic-Tac-Teo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔥🔥What Is this!!🔥🔥

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🚨

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

📝About📝

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

🧑‍💻how to use🧑‍💻

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

About

a simple game (tic tac toe 5*5 ) with javafx

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages