* Get the state of a single signal * @param t the tile to get the signal state for * @param signalbit the signal * @return the state of the signal */
| 370 | * @return the state of the signal |
| 371 | */ |
| 372 | inline SignalState GetSingleSignalState(Tile t, uint8_t signalbit) |
| 373 | { |
| 374 | return (SignalState)HasBit(GetSignalStates(t), signalbit); |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * Set whether the given signals are present (Along/AgainstTrackDir) |
no test coverage detected