* Returns the height of a tile in pixels, also for tiles outside the map (virtual "black" tiles). * * @param x X coordinate of the tile, may be outside the map. * @param y Y coordinate of the tile, may be outside the map. * @return The height in pixels in the same unit as TilePixelHeight. */
| 82 | * @return The height in pixels in the same unit as TilePixelHeight. |
| 83 | */ |
| 84 | inline uint TilePixelHeightOutsideMap(int x, int y) |
| 85 | { |
| 86 | return TileHeightOutsideMap(x, y) * TILE_HEIGHT; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Get the tiletype of a given tile. |
no test coverage detected