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

12 lines
270 B
Go

package client
import pk "git.konjactw.dev/falloutBot/go-mc/net/packet"
//codec:gen
type UpdateEntityPositionAndRotation struct {
EntityID int32 `mc:"VarInt"`
DeltaX, DeltaY, DeltaZ int16
Yaw, Pitch pk.Angle
OnGround bool
}