Files
minego/pkg/protocol/packet/game/client/sound_entity.go
2025-08-27 20:28:44 +08:00

18 lines
392 B
Go

package client
import (
"git.konjactw.dev/falloutBot/go-mc/net/packet"
"git.konjactw.dev/patyhank/minego/pkg/protocol/component"
)
//codec:gen
type EntitySoundEffect struct {
SoundEvent packet.OptID[component.SoundEvent, *component.SoundEvent]
SoundCategory int32 `mc:"VarInt"`
EntityID int32 `mc:"VarInt"`
Volume float32
Pitch float32
Seed int32
}