* Return whether a tile is a normal road. * @param t Tile to query. * @pre IsTileType(t, MP_ROAD) * @return True if normal road. */
| 46 | * @return True if normal road. |
| 47 | */ |
| 48 | [[debug_inline]] inline static bool IsNormalRoad(Tile t) |
| 49 | { |
| 50 | return GetRoadTileType(t) == RoadTileType::Normal; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Return whether a tile is a normal road tile. |
no test coverage detected