Add some commands

This commit is contained in:
Zachary Yedidia
2019-01-14 00:57:39 -05:00
parent 23926af9f7
commit 01f618627b
9 changed files with 160 additions and 15 deletions

View File

@@ -24,3 +24,8 @@ type Window interface {
Resize(w, h int)
SetActive(b bool)
}
type BWindow interface {
Window
SetBuffer(b *buffer.Buffer)
}