From ac198ec6a80ba54aeb86449bc9f3e1868b479104 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Tue, 23 Apr 2024 10:25:40 +0200 Subject: [PATCH] Added a folder structure. Created the estimated number of files needed to complete the Final project. --- LICENSE | 2 +- README.md | 3 ++- game/gameloop.go | 1 + game/window.go | 1 + gameControl/check.go | 1 + main.go | 1 + opponent/minimax.go | 1 + 7 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 game/gameloop.go create mode 100644 game/window.go create mode 100644 gameControl/check.go create mode 100644 main.go create mode 100644 opponent/minimax.go diff --git a/LICENSE b/LICENSE index 29a2011..ccffae1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Fabel +Copyright (c) 2024 Falko Victor Habel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 2e4f8c7..22f5aac 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # TicTacToe - +#### Video Demo: +#### Description: This is my CS50 Final Project it is a TicTacToe Singleplayer Game with the minimax Algorithm written in GO and the Fyne UI framework. \ No newline at end of file diff --git a/game/gameloop.go b/game/gameloop.go new file mode 100644 index 0000000..f876790 --- /dev/null +++ b/game/gameloop.go @@ -0,0 +1 @@ +package game diff --git a/game/window.go b/game/window.go new file mode 100644 index 0000000..f876790 --- /dev/null +++ b/game/window.go @@ -0,0 +1 @@ +package game diff --git a/gameControl/check.go b/gameControl/check.go new file mode 100644 index 0000000..3b5eea1 --- /dev/null +++ b/gameControl/check.go @@ -0,0 +1 @@ +package gamecontrol diff --git a/main.go b/main.go new file mode 100644 index 0000000..f189a27 --- /dev/null +++ b/main.go @@ -0,0 +1 @@ +package main diff --git a/opponent/minimax.go b/opponent/minimax.go new file mode 100644 index 0000000..b84e088 --- /dev/null +++ b/opponent/minimax.go @@ -0,0 +1 @@ +package opponent