| 126 | } |
| 127 | |
| 128 | @Injectable() |
| 129 | @ECSSystem('B') |
| 130 | class SystemB extends EntitySystem implements IService { |
| 131 | @InjectProperty(SystemA) |
| 132 | public systemA!: SystemA; |
| 133 | |
| 134 | constructor() { |
| 135 | super(Matcher.empty()); |
| 136 | } |
| 137 | override dispose() {} |
| 138 | } |
| 139 | |
| 140 | @Injectable() |
| 141 | @ECSSystem('C') |
nothing calls this directly
no test coverage detected