aboutsummaryrefslogtreecommitdiffstats
path: root/env.go
blob: c1800d6db20ba3b899861561e2fd4d7cf475937b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package gui

import (
	"image"
	"image/draw"
)

type Env interface {
	Events() <-chan Event
	Draw() chan<- func(draw.Image) image.Rectangle
}