Create a new light source. Caller (and extern.h) doesn't need to know anything about type 'light_source'. */
| 59 | /* Create a new light source. Caller (and extern.h) doesn't need to know |
| 60 | anything about type 'light_source'. */ |
| 61 | void |
| 62 | new_light_source(coordxy x, coordxy y, int range, int type, anything *id) |
| 63 | { |
| 64 | (void) new_light_core(x, y, range, type, id); |
| 65 | } |
| 66 | |
| 67 | /* Create a new light source and return it. Only used within this file. */ |
| 68 | staticfn light_source * |
no test coverage detected