mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 01:37:18 -04:00
60e6fcb7ac
* moved filter constants back to d2enum * moving key and mouse button enums into d2enum * moving render type enum into d2enum * moving input even priority enums into d2enum * moving terminal enums into d2enum
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
|
|
)
|