Files
minego/pkg/protocol/component/tropical_fish_pattern.go
2025-08-22 05:14:59 +08:00

19 lines
317 B
Go

package component
import (
"git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type TropicalFishPattern struct {
Pattern int32 `mc:"VarInt"`
}
func (*TropicalFishPattern) Type() slot.ComponentID {
return 79
}
func (*TropicalFishPattern) ID() string {
return "minecraft:tropical_fish/pattern"
}