| 842 | |
| 843 | |
| 844 | void NPAR_EmitTubeConfetti(const xVec3* pos, const xVec3* vel) |
| 845 | { |
| 846 | NPARData* par; |
| 847 | NPARMgmt* mgmt = NPAR_FindParty(NPAR_TYP_TUBECONFETTI); |
| 848 | if ((mgmt != NULL) && (par = mgmt->NextAvail(), par != NULL)) |
| 849 | { |
| 850 | g_parm_tubeconfetti[0].ConfigPar(par, NPAR_MODE_STD, pos, vel); |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | void NPAR_EmitTubeSparklies(const xVec3* pos, const xVec3* vel) |
| 855 | { |
nothing calls this directly
no test coverage detected