Files
minego/codec/component/salmon_size.go

17 lines
269 B
Go

package component
import "git.konjactw.dev/patyhank/minego/codec/slot"
//codec:gen
type SalmonSize struct {
SizeType int32 `mc:"VarInt"`
}
func (*SalmonSize) Type() slot.ComponentID {
return 77
}
func (*SalmonSize) ID() string {
return "minecraft:salmon/size"
}