如果我想在游戏中添加计时器。我希望它从游戏开始到结束都显示在屏幕上,我应该添加什么代码?在哪里添加代码?
这是游戏,我想我应该在第48行添加其他代码,即“ def main()”。 http://inventwithpython.com/pygame/chapter3.html
def main():
global FPSCLOCK, DISPLAYSURF
pygame.init()
FPSCLOCK = pygame.time.Clock()
DISPLAYSURF = pygame.display.set_mode((WINDOWWIDTH, WINDOWHEIGHT))