Oh my joodness

This commit is contained in:
2023-03-08 20:41:48 -05:00
parent 305acea285
commit 04884bd8e3
4 changed files with 9 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ package main
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/elements/testing"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/x"
import _ "git.tebibyte.media/sashakoshka/ezprof/hook"
import "git.tebibyte.media/sashakoshka/ezprof/ez"
func main () {
tomo.Run(run)
@@ -14,4 +14,5 @@ func run () {
window.SetTitle("Draw Test")
window.Adopt(testing.NewArtist())
window.OnClose(tomo.Stop)
ez.Prof()
}

View File

@@ -3,6 +3,7 @@ package main
import "git.tebibyte.media/sashakoshka/tomo"
import "git.tebibyte.media/sashakoshka/tomo/elements/basic"
import _ "git.tebibyte.media/sashakoshka/tomo/backends/x"
import "git.tebibyte.media/sashakoshka/ezprof/ez"
func main () {
tomo.Run(run)
@@ -26,4 +27,5 @@ func run () {
window.Adopt(button)
window.OnClose(tomo.Stop)
window.Show()
ez.Prof()
}