| 41 | bool hasGhostMods() const { return (_4 & 0x40) != 0; } |
| 42 | bool hasBridge() const { return (_4 & 0x80) != 0; } |
| 43 | void setHasBridge(bool hasBridge) |
| 44 | { |
| 45 | _4 &= ~0x80; |
| 46 | _4 |= hasBridge ? 0x80 : 0; |
| 47 | } |
| 48 | uint8_t laneOccupation() const { return (_4 & 0x30) >> 4; } |
| 49 | void setLaneOccupation(uint8_t newLaneOccupation) |
| 50 | { |
no outgoing calls
no test coverage detected