rove/pkg/game/command.go
2020-06-06 14:44:59 +01:00

17 lines
362 B
Go

package game
const (
CommandMove = "move"
)
// Command represends a single command to execute
type Command struct {
Command string `json:"command"`
// Used in the move command
Bearing string `json:"bearing,omitempty"`
Duration int `json:"duration,omitempty"`
}
// CommandStream is a list of commands to execute in order
type CommandStream []Command