| 556 | } |
| 557 | |
| 558 | void particle_flash(int type, float scale, float angle, const vec &p) |
| 559 | { |
| 560 | angle *= RAD; |
| 561 | newparticle(p, vec(cosf(angle), sinf(angle), scale), 0, type); |
| 562 | } |
| 563 | |
| 564 | void particle_splash(int type, int num, int fade, const vec &p) |
| 565 | { |
no test coverage detected