aztecs-0.9.0: src/Aztecs/ECS/World/Bundle/Dynamic/Class.hs
-- |
-- Module : Aztecs.ECS.World.Bundle.Dynamic.Class
-- Copyright : (c) Matt Hunzinger, 2025
-- License : BSD-style (see the LICENSE file in the distribution)
--
-- Maintainer : matt@hunzinger.me
-- Stability : provisional
-- Portability : non-portable (GHC extensions)
module Aztecs.ECS.World.Bundle.Dynamic.Class (MonoidDynamicBundle (..)) where
import Aztecs.ECS.Component
-- | Monoid bundle of dynamic components.
--
-- @since 9.0
class MonoidDynamicBundle a where
-- | Add a component to the bundle by its `ComponentID`.
--
-- @since 9.0
dynBundle :: (Component c) => ComponentID -> c -> a