| 489 | } |
| 490 | |
| 491 | static void Custom_RemoveAt(int i) { |
| 492 | for (; i < custom_count - 1; i++) { |
| 493 | custom_particles[i] = custom_particles[i + 1]; |
| 494 | } |
| 495 | custom_count--; |
| 496 | } |
| 497 | |
| 498 | static void Custom_Tick(float delta) { |
| 499 | int i; |
no outgoing calls
no test coverage detected