(self, name, width, height)
| 283 | class ModuleHUD (object): |
| 284 | |
| 285 | def __init__(self, name, width, height): |
| 286 | self.name = name |
| 287 | self.dim = (width, height) |
| 288 | self._init_hud_params() |
| 289 | self._init_data_params() |
| 290 | |
| 291 | def start(self): |
| 292 | pass |
nothing calls this directly
no test coverage detected