Files
minego/pkg/protocol/component/repairable.go
2025-08-27 20:28:44 +08:00

21 lines
318 B
Go

package component
import (
pk "git.konjactw.dev/falloutBot/go-mc/net/packet"
"git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type Repairable struct {
Items pk.IDSet
}
func (*Repairable) Type() slot.ComponentID {
return 29
}
func (*Repairable) ID() string {
return "minecraft:repairable"
}