packages feed

aztecs-0.14.0: src/Aztecs/ECS/R.hs

{-# LANGUAGE DeriveFunctor #-}

module Aztecs.ECS.R (R (..)) where

-- | Read-only 'Queryable' component access.
newtype R a = R {unR :: a}
  deriving (Show, Eq, Functor)