processEntities method
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);