(score)
| 187 | return |
| 188 | |
| 189 | def drawScore(score): |
| 190 | scoreSurf = BASICFONT.render('Score: %s' % (score), True, WHITE) |
| 191 | scoreRect = scoreSurf.get_rect() |
| 192 | scoreRect.topleft = (WINDOWWIDTH - 120, 10) |
| 193 | DISPLAYSURF.blit(scoreSurf, scoreRect) |
| 194 | |
| 195 | |
| 196 | def drawWorm(wormCoords): |