chore: initial project structure
This commit is contained in:
23
cmd/launcher/main.go
Normal file
23
cmd/launcher/main.go
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user