init method

void init()

Initialize all the systems that are registered.

Implementation

void init() {
  for (final system in _systems) {
    system.init();
  }
}