aztecs-0.12.0: A modular game engine and Entity-Component-System (ECS) for Haskell.
Copyright(c) Matt Hunzinger 2025
LicenseBSD-style (see the LICENSE file in the distribution)
Maintainermatt@hunzinger.me
Stabilityprovisional
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Aztecs.ECS.World.Bundle

Description

 
Synopsis

Documentation

newtype Bundle Source #

Bundle of components.

Since: 0.9

Constructors

Bundle 

Fields

Instances

Instances details
Monoid Bundle Source #

Since: 0.9

Instance details

Defined in Aztecs.ECS.World.Bundle

Semigroup Bundle Source #

Since: 0.9

Instance details

Defined in Aztecs.ECS.World.Bundle

bundle :: forall a. Component a => a -> Bundle Source #

Since: 0.11

runBundle :: Bundle -> Components -> EntityID -> Archetype -> (Components, Archetype) Source #

Insert a bundle of components into an archetype.

Since: 0.9