You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
417 B
Go
16 lines
417 B
Go
package etk
|
|
|
|
import "github.com/hajimehoshi/ebiten/v2"
|
|
|
|
type Shortcuts struct {
|
|
ConfirmKeyboard []ebiten.Key
|
|
ConfirmMouse []ebiten.MouseButton
|
|
ConfirmGamepad []ebiten.GamepadButton
|
|
}
|
|
|
|
var Bindings = &Shortcuts{
|
|
ConfirmKeyboard: []ebiten.Key{ebiten.KeyEnter, ebiten.KeyKPEnter},
|
|
ConfirmMouse: []ebiten.MouseButton{ebiten.MouseButtonLeft},
|
|
ConfirmGamepad: []ebiten.GamepadButton{ebiten.GamepadButton0},
|
|
}
|