vulkan-tutorial/extern/src/Affection/Subsystems/Class.hs
nek0 f422f94794 Add 'extern/' from commit '9b7b1c6167b4fa516b91759ca86139ede07f231d'
git-subtree-dir: extern
git-subtree-mainline: c84b50de5f
git-subtree-split: 9b7b1c6167
2022-07-09 20:34:38 +02:00

14 lines
409 B
Haskell

{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE AllowAmbiguousTypes #-}
module Affection.Subsystems.Class where
import Affection.Types
import qualified SDL
-- | This class denotes a Subsystem to be part of SDL
class SDLSubsystem s where
-- | Consume the given 'SDL.EventPayload's and return only those not
-- recognised
consumeSDLEvents :: s -> [SDL.EventPayload] -> Affection [SDL.EventPayload]