void addSystem(System system, {String tag = ""}) { system.world = this; system.tag = tag; _systems[tag] ??= <System>[]; _systems[tag]!.add(system); }