MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / xParGroupKillAllParticles

Function xParGroupKillAllParticles

src/SB/Core/x/xParGroup.cpp:118–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118void xParGroupKillAllParticles(xParGroup* ps)
119{
120 xPar* i = ps->m_root;
121
122 while (i)
123 {
124 xPar* tmp = i;
125
126 i = i->m_next;
127
128 xParGroupKillPar(ps, tmp);
129 }
130}
131
132#define clamp(x, a, b) (((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x)))
133

Callers 2

xParSysResetFunction · 0.70
xParSysExitFunction · 0.70

Calls 1

xParGroupKillParFunction · 0.85

Tested by

no test coverage detected