| 236 | VARP(dynlight, 0, 1, 1); |
| 237 | |
| 238 | static inline bool insidearea(const block &a, const block &b) |
| 239 | { |
| 240 | return b.x >= a.x && b.y >= a.y && b.x+b.xs <= a.x+a.xs && b.y+b.ys <= a.y+a.ys; |
| 241 | } |
| 242 | |
| 243 | void preparedynlight(dlight &d) |
| 244 | { |
no outgoing calls
no test coverage detected