17 lines
273 B
Go
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"
|
|
}
|