changed input of state machine

This commit is contained in:
nek0 2017-12-16 19:33:43 +01:00
parent 54018ff71e
commit 714bef562c
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@ import qualified SDL
class StateMachine a us where
smLoad :: a -> Affection us ()
smUpdate :: a -> Double -> Affection us ()
smEvent :: a -> SDL.EventPayload -> Affection us ()
smEvent :: a -> [SDL.EventPayload] -> Affection us ()
smDraw :: a -> Affection us ()
smClean :: a -> Affection us ()