Files
minego/codec/component/use_remainder.go
2025-06-19 15:01:07 +08:00

17 lines
273 B
Go

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