static */
| 182 | } |
| 183 | |
| 184 | /* static */ ScriptTile::Slope ScriptTile::GetComplementSlope(Slope slope) |
| 185 | { |
| 186 | if ((slope & ~SLOPE_ELEVATED) != 0) return SLOPE_INVALID; |
| 187 | |
| 188 | return (Slope)::ComplementSlope((::Slope)slope); |
| 189 | } |
| 190 | |
| 191 | /* static */ SQInteger ScriptTile::GetMinHeight(TileIndex tile) |
| 192 | { |
nothing calls this directly
no test coverage detected