execute method

void execute(
  1. double delta
)

Execute everything in the World once.

Implementation

void execute(double delta) {
  systemManager._execute(delta);
  entityManager.processRemovedEntities();
  entityManager.processRemovedComponents();
}