From 57769a9b5f271e3483324dd027debdf717f81bba Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Sat, 18 May 2024 23:53:56 +0200 Subject: [PATCH] updated readme File with newest Information --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1299665..36b5b49 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -# TicTacToe Game -## Overview +# TICTACTOE in GO +#### Video Demo: +#### Description: + This Tic-Tac-Toe game is a simple single-player experience where the player takes on a computer-controlled opponent. The goal of the game is to make a horizontal, vertical, or diagonal line of their chosen symbol (X or O) on a 3x3 grid. The game ends when one player successfully achieves three marks in a row or when all spaces are filled, resulting in a draw if neither player has achieved this condition. @@ -15,7 +17,7 @@ go install fyne.io/fyne/v2/cmd/fyne@latest 1. Clone the repository: Open your terminal and run the following command to clone the TicTacToe repository to your local machine: ```bash -git clone https://gitea.fabelous.app/Fabel/TicTacToe.git` #This is my private gitea server, which is currently not always available +git clone https://gitea.fabelous.app/fabel/TicTacToe.git` cd tictactoe ``` 2. Install dependencies: @@ -35,11 +37,16 @@ go run main.go # Windows: fyne package -os windows -icon ./resources/icon.png # Linux: -fyne package -os linux -icon ./resources/icon.png #gives you a .tar.xz file +fyne package -os linux -icon ./resources/icon.png # gives you a .tar.xz file +# Android +fyne package -os android -appID com.example.myapp -icon ./resources/icon.png # MacOS: -fyne package -os macos -icon ./resources/icon.png #Could not Test +fyne package -os macos -icon ./resources/icon.png # not tested +# IOS +fyne package -os ios -appID com.example.myapp -icon ./resources/icon.png # not tested ``` + This will create an executable file named "tictactoe" in your project's directory that you can run to start the TicTacToe game application. ## Game Functionality