Files
go-mc/bot/path/inputs.go
2020-09-21 19:11:52 -07:00

11 lines
157 B
Go

package path
// Inputs describes the desired movements of the player.
type Inputs struct {
Yaw, Pitch float64
ThrottleX, ThrottleZ float64
Jump bool
}