* Return whether a tile is a normal road tile. * @param t Tile to query. * @return True if normal road tile. */
| 56 | * @return True if normal road tile. |
| 57 | */ |
| 58 | [[debug_inline]] inline static bool IsNormalRoadTile(Tile t) |
| 59 | { |
| 60 | return IsTileType(t, MP_ROAD) && IsNormalRoad(t); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Return whether a tile is a level crossing. |
no test coverage detected