remove ebiten from KeyMap

This commit is contained in:
2023-07-05 21:54:37 +02:00
parent 7864282f02
commit 5425e0036b
2 changed files with 16 additions and 18 deletions

View File

@@ -1,16 +1,14 @@
package entity
import "github.com/hajimehoshi/ebiten"
type KeyMap struct {
Up ebiten.Key
Down ebiten.Key
Right ebiten.Key
Left ebiten.Key
Action0 ebiten.Key
Action1 ebiten.Key
Action2 ebiten.Key
Action3 ebiten.Key
Up any
Down any
Right any
Left any
Action0 any
Action1 any
Action2 any
Action3 any
}
type ScreenSettings struct {