init method

  1. @mustCallSuper
void init()

Initialize the World.

Will initialize all the registered Systems.

Implementation

@mustCallSuper

/// Initialize the World.
///
/// Will initialize all the registered [System]s.
void init() {
  systemManager.init();
}