| 158 | // base class constructors don't do anything so are not needed unless we declare dependencies or init lookup variables |
| 159 | |
| 160 | void Process(fw::ComponentRange<TestBCView>& range) |
| 161 | { |
| 162 | fw::EcsCommandBuffer& cb = GetCommandBuffer(); |
| 163 | |
| 164 | for (TestBCView& view : range) |
| 165 | { |
| 166 | cb.RemoveEntity(view.GetCurrentEntity()); |
| 167 | } |
| 168 | } |
| 169 | }; |
| 170 | |
| 171 | ecs.UnregisterSystem<TestRemoveASystem>(); |
nothing calls this directly
no test coverage detected