added missing statements

This commit is contained in:
Falko Victor Habel 2024-05-02 17:29:42 +02:00
parent 5d553ca386
commit 6318327a15
1 changed files with 4 additions and 2 deletions

View File

@ -7,8 +7,10 @@ This Tic-Tac-Toe game is a simple single-player experience where the player take
`Go` programming language installed on your machine: To run the TicTacToe application, you need to have the Go programming language installed on your computer. You can download and install Go from the official website (https://golang.org/dl/). Follow the instructions for your specific operating system to set up the Go environment. `Go` programming language installed on your machine: To run the TicTacToe application, you need to have the Go programming language installed on your computer. You can download and install Go from the official website (https://golang.org/dl/). Follow the instructions for your specific operating system to set up the Go environment.
`Fyne` framework for building cross-platform GUI applications: The application uses the Fyne framework to create the graphical user interface (GUI) for the TicTacToe game. You can install the Fyne framework using the following command: `Fyne` framework for building cross-platform GUI applications: The application uses the Fyne framework to create the graphical user interface (GUI) for the TicTacToe game. You can install the Fyne framework using the following command:
```bash
go get fyne.io/fyne/v2@latest go get fyne.io/fyne/v2@latest
go install fyne.io/fyne/v2/cmd/fyne@latest
```
## How to run the application ## How to run the application
1. Clone the repository: 1. Clone the repository:
Open your terminal and run the following command to clone the TicTacToe repository to your local machine: Open your terminal and run the following command to clone the TicTacToe repository to your local machine:
@ -33,7 +35,7 @@ go run main.go
# Windows: # Windows:
fyne package -os windows -icon ./resources/icon.png fyne package -os windows -icon ./resources/icon.png
# Linux: # Linux:
fyne package -os linux -icon ./resources/icon.png #Could not test fyne package -os linux -icon ./resources/icon.png #gives you ar .tar.xz file
# MacOS: # MacOS:
fyne package -os macos -icon ./resources/icon.png #Could not Test fyne package -os macos -icon ./resources/icon.png #Could not Test
``` ```