MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / Custom_RemoveAt

Function Custom_RemoveAt

src/Particle.c:491–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489}
490
491static 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
498static void Custom_Tick(float delta) {
499 int i;

Callers 2

Custom_TickFunction · 0.85
Particles_CustomEffectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected