* Return a random direction * * @return a random direction */
| 253 | * @return a random direction |
| 254 | */ |
| 255 | static inline DiagDirection RandomDiagDir() |
| 256 | { |
| 257 | return (DiagDirection)(RandomRange(DIAGDIR_END)); |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * Draw a house and its tile. This is a tile callback routine. |
no test coverage detected