| 112 | Item.__init__(self,"normal",(),opts,**kwargs) |
| 113 | |
| 114 | class Camera(Item): |
| 115 | def __init__(self,*opts,**kwargs): |
| 116 | Item.__init__(self,"camera",(),opts,**kwargs) |
| 117 | |
| 118 | class LightSource(Item): |
| 119 | def __init__(self,v,*opts,**kwargs): |
no outgoing calls
no test coverage detected