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

9 lines
168 B
Go

package client
//codec:gen
type UpdateEntityPosition struct {
EntityID int32 `mc:"VarInt"`
DeltaX, DeltaY, DeltaZ int16
OnGround bool
}