* Clear the snow from a tile and return it to its previous type. * @param t the tile to clear of snow * @pre IsSnowTile(t) */
| 302 | * @pre IsSnowTile(t) |
| 303 | */ |
| 304 | inline void ClearSnow(Tile t) |
| 305 | { |
| 306 | assert(IsSnowTile(t)); |
| 307 | ClrBit(t.m3(), 4); |
| 308 | SetClearDensity(t, 3); |
| 309 | } |
| 310 | |
| 311 | #endif /* CLEAR_MAP_H */ |
no test coverage detected