update<T> method

void update<T>(
  1. T args, {
  2. String tag = "",
})

Implementation

void update<T>(T args, {String tag = ""}) {
  final systems = _systems[tag];
  if (systems != null) {
    for (final system in systems) {
      system.update(args);
    }
  }
  applyCommands();
}