Files
minego/pkg/protocol/component/tooltip_style.go
2025-08-27 20:28:44 +08:00

21 lines
332 B
Go

package component
import (
pk "git.konjactw.dev/falloutBot/go-mc/net/packet"
"git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type TooltipStyle struct {
Style pk.Identifier
}
func (*TooltipStyle) Type() slot.ComponentID {
return 31
}
func (*TooltipStyle) ID() string {
return "minecraft:tooltip_style"
}