mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04:00
13 lines
233 B
Go
13 lines
233 B
Go
|
package d2enum
|
||
|
|
||
|
// TermCategory applies styles to the lines in the Terminal
|
||
|
type TermCategory int
|
||
|
|
||
|
// Terminal Category types
|
||
|
const (
|
||
|
TermCategoryNone TermCategory = iota
|
||
|
TermCategoryInfo
|
||
|
TermCategoryWarning
|
||
|
TermCategoryError
|
||
|
)
|