| 39 | } |
| 40 | |
| 41 | ParticleSystem::ParticleSystem(int particles) |
| 42 | { |
| 43 | resize(particles); |
| 44 | last_update_msec = wf::get_current_time(); |
| 45 | create_program(); |
| 46 | |
| 47 | particles_alive.store(0); |
| 48 | } |
| 49 | |
| 50 | void ParticleSystem::set_initer(ParticleIniter init) |
| 51 | { |
nothing calls this directly
no outgoing calls
no test coverage detected