doodle/lib/ui/eg/layout/main.go
Noah Petherbridge b06c52a705 UI: Add MainWindow Widget and start an example app
* MainWindow is ideal for apps that just want a UI and
  don't manage their own SDL windows.
* The example app will grow into a series of demos that
  test the UI toolkit to help fix bugs and grow features.
2019-06-08 17:03:59 -07:00

13 lines
140 B
Go

package main
import (
"fmt"
"git.kirsle.net/apps/doodle/lib/ui/eg/layout"
)
func main() {
fmt.Println("Hello world")
layout.main()
}