| 198 | } |
| 199 | |
| 200 | ParticleSystem::ParticleSystem(const Operations& operations, size_t reserveParticleCount) : |
| 201 | mOperations(operations) |
| 202 | { |
| 203 | mParticles.reserve(reserveParticleCount); |
| 204 | } |
| 205 | |
| 206 | void ParticleSystem::update(float dt) |
| 207 | { |
nothing calls this directly
no outgoing calls
no test coverage detected