redo-event-system #1

Merged
sashakoshka merged 7 commits from redo-event-system into main 2022-11-09 16:54:11 -07:00
Showing only changes of commit 11bdae78a0 - Show all commits

View File

@ -1,11 +1,13 @@
package stone
import "time"
import "image"
import "errors"
type Backend interface {
Run () (chan(Event))
SetTitle (title string)
SetIcon (icons []image.Image)
}
type BackendFactory func (application *Application) (backend Backend, err error)