Crate yaecs [] [src]

Yet Another Entity Component System

Macros

components

Macro that generates a bitflag implementation for all supplied components. This allows us to much more quickly determine whether an Entity has the required components for a System. Note that we are limited to 64 component types with this method.

Structs

Entity

An Entity is simply an identifier for a bag of components. In general, Systems operate on a subset of all entities that posess components the System is interested in.

EntityBuilder
World

Traits

Component
System