changed input of state machine
This commit is contained in:
parent
54018ff71e
commit
714bef562c
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@ import qualified SDL
|
||||||
class StateMachine a us where
|
class StateMachine a us where
|
||||||
smLoad :: a -> Affection us ()
|
smLoad :: a -> Affection us ()
|
||||||
smUpdate :: a -> Double -> Affection us ()
|
smUpdate :: a -> Double -> Affection us ()
|
||||||
smEvent :: a -> SDL.EventPayload -> Affection us ()
|
smEvent :: a -> [SDL.EventPayload] -> Affection us ()
|
||||||
smDraw :: a -> Affection us ()
|
smDraw :: a -> Affection us ()
|
||||||
smClean :: a -> Affection us ()
|
smClean :: a -> Affection us ()
|
||||||
|
|
Loading…
Reference in a new issue