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