| 530 | } |
| 531 | |
| 532 | static void lightningTweakStart(const tweak_info& t) |
| 533 | { |
| 534 | xVec3 s, e; |
| 535 | xVec3Add(&s, (xVec3*)&globals.player.ent.model->Mat->pos, &sTweakStart); |
| 536 | xVec3Add(&e, (xVec3*)&globals.player.ent.model->Mat->pos, &sTweakEnd); |
| 537 | gLightningTweakAddInfo.start = &s; |
| 538 | gLightningTweakAddInfo.end = &e; |
| 539 | zLightningAdd(&gLightningTweakAddInfo); |
| 540 | } |
| 541 | |
| 542 | void zLightningUpdate(F32 dt) |
| 543 | { |
nothing calls this directly
no test coverage detected