First runnable version: Implemented main.go and created basic game window

This commit is contained in:
Falko Victor Habel 2024-04-23 13:56:27 +02:00
parent 8be17d7c7d
commit 335e3fe858
1 changed files with 10 additions and 0 deletions

10
main.go
View File

@ -1 +1,11 @@
package main
import (
"tictactoe/game"
)
func main() {
// calls the CreateWindow function and runs that window
window := game.CreateWindow()
window.ShowAndRun()
}