Files
minego/pkg/protocol/component/note_block_sound.go
2025-08-27 20:28:44 +08:00

21 lines
342 B
Go

package component
import (
"git.konjactw.dev/falloutBot/go-mc/net/packet"
"git.konjactw.dev/patyhank/minego/pkg/protocol/slot"
)
//codec:gen
type NoteBlockSound struct {
Sound packet.Identifier
}
func (*NoteBlockSound) Type() slot.ComponentID {
return 62
}
func (*NoteBlockSound) ID() string {
return "minecraft:note_block_sound"
}