This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/examples/test/main.go

18 lines
374 B
Go
Raw Normal View History

2023-01-09 06:03:19 +00:00
package main
import "git.tebibyte.media/sashakoshka/tomo"
2023-01-12 17:51:42 +00:00
import "git.tebibyte.media/sashakoshka/tomo/elements/testing"
2023-01-09 06:03:19 +00:00
import _ "git.tebibyte.media/sashakoshka/tomo/backends/x"
func main () {
tomo.Run(run)
}
func run () {
window, _ := tomo.NewWindow(128, 128)
window.SetTitle("hellorld!")
2023-01-12 17:51:42 +00:00
window.Adopt(testing.NewMouse())
2023-01-09 06:03:19 +00:00
window.OnClose(tomo.Stop)
window.Show()
}