Assigns other initialized modules that input module needs.
(self, hud, world)
| 1385 | self._world = None |
| 1386 | |
| 1387 | def start(self, hud, world): |
| 1388 | """Assigns other initialized modules that input module needs.""" |
| 1389 | self._hud = hud |
| 1390 | self._world = world |
| 1391 | |
| 1392 | self._hud.notification("Press 'H' or '?' for help.", seconds=4.0) |
| 1393 | |
| 1394 | def render(self, display): |
| 1395 | """Does nothing. Input module does not need render anything.""" |
no test coverage detected