Files
barnard/uiterm/view.go
Tim Cooper 4b86035511 move barnard main package to package root
There's only a single executable, so this makes things cleaner
2018-05-08 18:00:30 -03:00

11 lines
193 B
Go

package uiterm
type View interface {
uiInitialize(ui *Ui)
uiSetActive(active bool)
uiSetBounds(x0, y0, x1, y1 int)
uiDraw()
uiKeyEvent(mod Modifier, key Key)
uiCharacterEvent(ch rune)
}