apecs-stm-0.2: src/Apecs/STM/Prelude.hs
-- | This module re-exports the apecs prelude with STM versions.
module Apecs.STM.Prelude
( System
, module Apecs.STM
, module Apecs
) where
import Apecs hiding (Global, Map, System, Unique,
makeWorldAndComponents)
import Apecs.STM
type System w a = SystemT w STM a