updateAll method

void updateAll(
  1. Input input
)

Implementation

void updateAll(Input input) {
  update(input);

  for(Entity e in children) {
    e.updateAll(input);
  }
}