| 140 | } |
| 141 | |
| 142 | void zThrownCollide_DestructObj(zThrownStruct* thrown, xEntCollis* collis, F32* bounce, |
| 143 | F32* friction) |
| 144 | { |
| 145 | sThrowButtonMask = 0x40; |
| 146 | zThrownCollide_CauseDamage(thrown, collis); |
| 147 | *bounce = 0.0f; |
| 148 | *friction = 0.0f; |
| 149 | zEntEvent(thrown->ent, eEventDestroy); |
| 150 | } |
| 151 | |
| 152 | void zThrownCollide_BSandyHead(zThrownStruct* thrown, xEntCollis* collis, F32* bounce, |
| 153 | F32* friction) |
nothing calls this directly
no test coverage detected