Add basic booster

This commit is contained in:
jgk
2021-05-24 13:59:51 +02:00
parent cda035b1d1
commit 968273bf25
20 changed files with 276 additions and 324 deletions
+2 -2
View File
@@ -46,7 +46,7 @@ data KeyConfigSDL = KeyConfigSDL
rotateCameraMinusKey :: SDL.Scancode,
zoomInKey :: SDL.Scancode,
zoomOutKey :: SDL.Scancode,
newKey :: SDL.Scancode
newMapKey :: SDL.Scancode
}
deriving (Generic, Show)
@@ -68,7 +68,7 @@ defaultKeyConfigSDL =
rotateCameraMinusKey = SDL.ScancodeE,
zoomInKey = SDL.ScancodeJ,
zoomOutKey = SDL.ScancodeK,
newKey = SDL.ScancodeN
newMapKey = SDL.ScancodeN
}
--instance ToJSON KeyConfig where