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

20 lines
380 B
Go

package component
import (
"git.konjactw.dev/patyhank/minego/codec/data/slot"
"github.com/Tnze/go-mc/nbt"
)
//codec:gen
type IntangibleProjectile struct {
Empty nbt.RawMessage `mc:"NBT"` // Always empty compound tag
}
func (*IntangibleProjectile) Type() slot.ComponentID {
return 19
}
func (*IntangibleProjectile) ID() string {
return "minecraft:intangible_projectile"
}