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

19 lines
281 B
Go

package component
import (
"git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type Enchantable struct {
Value int32 `mc:"VarInt"`
}
func (*Enchantable) Type() slot.ComponentID {
return 27
}
func (*Enchantable) ID() string {
return "minecraft:enchantable"
}