| 21 | }; |
| 22 | |
| 23 | auto LaserSightIsEquipped(LaraInfo& lara) |
| 24 | { |
| 25 | if (lara.Weapons[(int)LaraWeaponType::Revolver].HasLasersight || |
| 26 | lara.Weapons[(int)LaraWeaponType::Crossbow].HasLasersight || |
| 27 | lara.Weapons[(int)LaraWeaponType::HK].HasLasersight) |
| 28 | { |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | return false; |
| 33 | }; |
| 34 | |
| 35 | bool TryModifyMiscCount(LaraInfo & lara, GAME_OBJECT_ID objectID, std::optional<int> amount, ModificationType modType) |
| 36 | { |
no outgoing calls
no test coverage detected