* Checks whether the given signals is present * @param t the tile to check on * @param signalbit the signal * @return true if and only if the signal is present */
| 401 | * @return true if and only if the signal is present |
| 402 | */ |
| 403 | inline bool IsSignalPresent(Tile t, uint8_t signalbit) |
| 404 | { |
| 405 | return HasBit(GetPresentSignals(t), signalbit); |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Checks for the presence of signals (either way) on the given track on the |
no test coverage detected