Executed each frame. Calls method for parsing input.
(self, clock)
| 1395 | """Does nothing. Input module does not need render anything.""" |
| 1396 | |
| 1397 | def tick(self, clock): |
| 1398 | """Executed each frame. Calls method for parsing input.""" |
| 1399 | self.parse_input(clock) |
| 1400 | |
| 1401 | def _parse_events(self): |
| 1402 | """Parses input events. These events are executed only once when pressing a key.""" |
no test coverage detected