tui/view.go

19 lines
264 B
Go
Raw Normal View History

2021-01-10 21:52:29 +01:00
package tui
import (
"git.tordarus.net/tordarus/buf2d"
"github.com/gdamore/tcell"
)
type View interface {
Events
SetForeground(color tcell.Color)
Foreground() tcell.Color
SetBackground(color tcell.Color)
Background() tcell.Color
Draw(*buf2d.Buffer)
}