17 lines
274 B
Go
17 lines
274 B
Go
package component
|
|
|
|
import "git.konjactw.dev/patyhank/minego/codec/data/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"
|
|
}
|