Files
minego/pkg/protocol/packet/game/client/sound.go
2025-08-22 05:16:24 +08:00

14 lines
415 B
Go

package client
import "git.konjactw.dev/patyhank/minego/pkg/protocol/component"
//codec:gen
type SoundEffect struct {
SoundID int32 `mc:"VarInt"`
//opt:id:SoundID
SoundEvent *component.SoundEvent
EffectPositionX, EffectPositionY, EffectPositionZ int32
Volume, Pitch float32
Seed int64
}