chore: initial project structure

This commit is contained in:
2026-05-23 17:53:50 +03:00
commit 320f009658
15 changed files with 86 additions and 0 deletions

23
cmd/launcher/main.go Normal file
View File

@@ -0,0 +1,23 @@
package main
import (
"fmt"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
)
func main() {
fmt.Println("MrixsCraft Launcher starting...")
a := app.New()
w := a.NewWindow("MrixsCraft Launcher")
w.Resize(fyne.NewSize(800, 600))
w.SetContent(container.NewVBox(
widget.NewLabel("MrixsCraft Launcher"),
))
w.ShowAndRun()
}