17 lines
316 B
Go
17 lines
316 B
Go
package component
|
|
|
|
import "git.konjactw.dev/patyhank/minego/codec/data/slot"
|
|
|
|
//codec:gen
|
|
type EnchantmentGlintOverride struct {
|
|
HasGlint bool
|
|
}
|
|
|
|
func (*EnchantmentGlintOverride) Type() slot.ComponentID {
|
|
return 18
|
|
}
|
|
|
|
func (*EnchantmentGlintOverride) ID() string {
|
|
return "minecraft:enchantment_glint_override"
|
|
}
|