(self, world)
| 171 | |
| 172 | class KeyboardControl(object): |
| 173 | def __init__(self, world): |
| 174 | world.hud.notification("Press 'H' or '?' for help.", seconds=4.0) |
| 175 | |
| 176 | def parse_events(self): |
| 177 | for event in pygame.event.get(): |
nothing calls this directly
no test coverage detected