18 lines
392 B
Go
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
|
|
}
|