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