| 986 | |
| 987 | |
| 988 | static int GetSlopePixelZ_Water(TileIndex tile, uint x, uint y, bool) |
| 989 | { |
| 990 | auto [tileh, z] = GetTilePixelSlope(tile); |
| 991 | |
| 992 | return z + GetPartialPixelZ(x & 0xF, y & 0xF, tileh); |
| 993 | } |
| 994 | |
| 995 | static Foundation GetFoundation_Water(TileIndex, Slope) |
| 996 | { |
nothing calls this directly
no test coverage detected