Files
minego/pkg/protocol/packet/game/client/teleport_entity.go
2025-08-22 05:14:59 +08:00

12 lines
324 B
Go

package client
//codec:gen
type SynchronizeVehiclePosition struct {
EntityID int32 `mc:"VarInt"`
X, Y, Z float64
VelocityX, VelocityY, VelocityZ float64
Yaw, Pitch float32
Flags int32
OnGround bool
}