11 lines
273 B
Go
11 lines
273 B
Go
package client
|
|
|
|
//codec:gen
|
|
type TeleportEntity struct {
|
|
EntityID int32 `mc:"VarInt"`
|
|
X, Y, Z float64
|
|
VelocityX, VelocityY, VelocityZ float64
|
|
Yaw, Pitch float32
|
|
OnGround bool
|
|
}
|