| 138 | } |
| 139 | |
| 140 | @Injectable() |
| 141 | @ECSSystem('C') |
| 142 | class SystemC extends EntitySystem implements IService { |
| 143 | @InjectProperty(SystemA) |
| 144 | public systemA!: SystemA; |
| 145 | |
| 146 | @InjectProperty(SystemB) |
| 147 | public systemB!: SystemB; |
| 148 | |
| 149 | constructor() { |
| 150 | super(Matcher.empty()); |
| 151 | } |
| 152 | override dispose() {} |
| 153 | } |
| 154 | |
| 155 | scene.addEntityProcessor(SystemA); |
| 156 | scene.addEntityProcessor(SystemB); |
nothing calls this directly
no test coverage detected