destroy method

void destroy()

Destroy the World by destroying all EntitySystems and Managers.

Implementation

void destroy() {
  for (final system in _systemsList) {
    system.destroy();
  }
  for (final manager in _managersBag) {
    manager.destroy();
  }
}