summaryrefslogtreecommitdiff
path: root/tocltcmds.go
diff options
context:
space:
mode:
Diffstat (limited to 'tocltcmds.go')
-rw-r--r--tocltcmds.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/tocltcmds.go b/tocltcmds.go
index 814ac73..477ddbc 100644
--- a/tocltcmds.go
+++ b/tocltcmds.go
@@ -433,6 +433,7 @@ type HUD struct {
Size [2]int32
ZIndex int16
Text2 string
+ Style HUDStyleFlags
}
type HUDID uint32
@@ -520,6 +521,10 @@ type ToCltChangeHUD struct {
//mt:if %s.Field == HUDText2
Text2 string
//mt:end
+
+ //mt:if %s.Field == HUDStyle
+ Style HUDStyleFlags
+ //mt:end
}
type HUDField uint8
@@ -538,11 +543,22 @@ const (
HUDSize
HUDZIndex
HUDText2
+ HUDStyle
hudMax
)
//go:generate stringer -trimprefix HUD -type HUDField
+type HUDStyleFlags uint32
+
+const (
+ StyleBold HUDStyleFlags = 1 << iota
+ StyleItalic
+ StyleMono
+)
+
+//go:generate stringer -trimprefix Style -type HUDStyleFlags
+
// ToCltHUDFlags tells the client to update its HUD flags.
type ToCltHUDFlags struct {
// &^= Mask