| 1192 | } |
| 1193 | |
| 1194 | void DoLotsOfBlood(int x, int y, int z, int speed, short direction, short roomNumber, int count) |
| 1195 | { |
| 1196 | for (int i = 0; i < count; i++) |
| 1197 | { |
| 1198 | DoBloodSplat( |
| 1199 | x + 256 - (GetRandomControl() * 512 / 0x8000), |
| 1200 | y + 256 - (GetRandomControl() * 512 / 0x8000), |
| 1201 | z + 256 - (GetRandomControl() * 512 / 0x8000), |
| 1202 | speed, direction, roomNumber); |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | void TriggerLaraBlood() |
| 1207 | { |
no test coverage detected