static */
| 36 | } |
| 37 | |
| 38 | /* static */ bool ScriptAirport::IsHangarTile(TileIndex tile) |
| 39 | { |
| 40 | if (!::IsValidTile(tile)) return false; |
| 41 | |
| 42 | return ::IsTileType(tile, MP_STATION) && ::IsHangar(tile); |
| 43 | } |
| 44 | |
| 45 | /* static */ bool ScriptAirport::IsAirportTile(TileIndex tile) |
| 46 | { |
nothing calls this directly
no test coverage detected