initial commit

This commit is contained in:
Tim Cooper
2014-12-04 17:08:26 -04:00
commit 562dec1e35
14 changed files with 1171 additions and 0 deletions

25
uiterm/attributes.go Normal file
View File

@@ -0,0 +1,25 @@
package uiterm
/*
* Source: https://godoc.org/github.com/nsf/termbox-go
*/
type Attribute int
const (
ColorDefault Attribute = iota
ColorBlack
ColorRed
ColorGreen
ColorYellow
ColorBlue
ColorMagenta
ColorCyan
ColorWhite
)
const (
AttrBold Attribute = 1 << (iota + 4)
AttrUnderline
AttrReverse
)