| 159 | } |
| 160 | |
| 161 | void zThrownCollide_Tiki(zThrownStruct* thrown, xEntCollis* collis, F32* bounce, F32* friction) |
| 162 | { |
| 163 | sThrowButtonMask = 0x40; |
| 164 | zThrownCollide_CauseDamage(thrown, collis); |
| 165 | *bounce = 0.0f; |
| 166 | *friction = 0.0f; |
| 167 | zEntEvent(thrown->ent, eEventDestroy); |
| 168 | } |
| 169 | |
| 170 | // WIP. |
| 171 | S32 zThrown_IsFruit(xEnt* ent, F32* stackHeight) |
nothing calls this directly
no test coverage detected