| 100 | } |
| 101 | |
| 102 | short GunHit(int x, int y, int z, short velocity, short yRot, short roomNumber) |
| 103 | { |
| 104 | auto pos = GetJointPosition(LaraItem, Random::GenerateInt(0, NUM_LARA_MESHES - 1)); |
| 105 | DoBloodSplat(pos.x, pos.y, pos.z, (GetRandomControl() & 3) + 3, LaraItem->Pose.Orientation.y, LaraItem->RoomNumber); |
| 106 | return GunShot(x, y, z, velocity, yRot, roomNumber); |
| 107 | } |
| 108 | |
| 109 | short GunShot(int x, int y, int z, short velocity, short yRot, short roomNumber) |
| 110 | { |
nothing calls this directly
no test coverage detected