processEntities method

  1. @override
void processEntities(
  1. Iterable<int> entities
)
override

Any implementing entity system must implement this method and the logic to process the given entities of the system.

Implementation

@override
void processEntities(Iterable<int> entities) =>
    entities.forEach(processEntity);