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

17 lines
279 B
Go

package component
import "git.konjactw.dev/patyhank/minego/codec/data/slot"
//codec:gen
type BundleContents struct {
Items []slot.Slot
}
func (*BundleContents) Type() slot.ComponentID {
return 41
}
func (*BundleContents) ID() string {
return "minecraft:bundle_contents"
}