13 lines
182 B
Go
13 lines
182 B
Go
package gamedata
|
|
|
|
type GameInputs struct {
|
|
XAxis float64
|
|
YAxis float64
|
|
ShotAngle float64
|
|
Shot bool
|
|
Start bool
|
|
Charge bool
|
|
Quit bool
|
|
Reset bool
|
|
}
|