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

19 lines
288 B
Go

package component
import (
slot2 "git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type UseRemainder struct {
Remainder slot2.Slot
}
func (*UseRemainder) Type() slot2.ComponentID {
return 22
}
func (*UseRemainder) ID() string {
return "minecraft:use_remainder"
}