alchemyst/ui/mainwindow/console.go
anton.gurov 56f3447666 diverge
2019-10-25 11:27:47 +03:00

12 lines
236 B
Go

package mainwindow
//Console is a pair of layers (BG and FG) used to render something
// All because of lack of background colors in libbearterminal
type Console struct {
x,y,w,h int
FgLayer *Layer
BgLayer *Layer
}
func NewConsole