()
| 108 | FPSCLOCK.tick(FPS) |
| 109 | |
| 110 | def drawPressKeyMsg(): |
| 111 | pressKeySurf = BASICFONT.render('Press a key to play.', True, DARKGRAY) |
| 112 | pressKeyRect = pressKeySurf.get_rect() |
| 113 | pressKeyRect.topleft = (WINDOWWIDTH - 200, WINDOWHEIGHT - 30) |
| 114 | DISPLAYSURF.blit(pressKeySurf, pressKeyRect) |
| 115 | |
| 116 | |
| 117 | def checkForKeyPress(): |
no outgoing calls
no test coverage detected