Get milliseconds since init.
(self)
| 218 | self._surface.fill(_rgb565_to_rgb888(color)) |
| 219 | |
| 220 | def get_ticks(self): |
| 221 | """Get milliseconds since init.""" |
| 222 | if self._initialized: |
| 223 | return pygame.time.get_ticks() - self._start_ticks |
| 224 | return 0 |
| 225 | |
| 226 | def delay(self, ms): |
| 227 | """Sleep for milliseconds.""" |
no outgoing calls
no test coverage detected