Refactor menu

This commit is contained in:
jgk
2021-04-08 00:44:02 +02:00
parent 294f2509d0
commit ddb1171e2e
9 changed files with 73 additions and 49 deletions
+2 -2
View File
@@ -1,16 +1,16 @@
module Dodge.Event
{- |
Module : Dodge.Event
Description : Direct event handling
Deals with direct events.
This includes individual key/mouse presses, but /not/ continuous held down input.
This includes individual key or mouse presses, but /not/ continuous held down input.
We cannot handle multiple keys held down at once here,
(eg left mouse button + right mouse button)
because these are separate events.
Instead we store the events in a set, and deal with the combinations in
"Dodge.Update".
-}
module Dodge.Event
( handleEvent
) where
import Dodge.Event.Keyboard