aztecs-0.1.0.1: src/Data/Aztecs/Core.hs
module Data.Aztecs.Core (Entity (..), EntityComponent (..)) where newtype Entity = Entity Int deriving (Eq, Ord, Show) data EntityComponent a = EntityComponent Entity a deriving (Show)
module Data.Aztecs.Core (Entity (..), EntityComponent (..)) where newtype Entity = Entity Int deriving (Eq, Ord, Show) data EntityComponent a = EntityComponent Entity a deriving (Show)