Destroy a component at a given index
| 100 | |
| 101 | // Destroy a component at a given index |
| 102 | void Components::destroyComponent(uint32 index) { |
| 103 | |
| 104 | assert(index < mNbComponents); |
| 105 | } |
| 106 | |
| 107 | // Remove a component at a given index |
| 108 | void Components::removeComponent(Entity entity) { |
nothing calls this directly
no outgoing calls
no test coverage detected