用Python做个小游戏(3)
import cfgimport sysimport pygamefrom modules import *'''主函数'''def main(cfg):pygame.init()screen = pygame.display.set_mode(cfg.SCREENSIZE)pygame.display.set_caption('Greedy Snak...
用Python做个小游戏(2)
代码如下:import osimport sysimport cfgimport randomimport pygamefrom modules import *'''开始游戏'''def startGame(screen):clock = pygame.time.Clock()# 加载字体font = pygame.font.Sy...
用Python做个小游戏
代码如下:import cfgimport sysimport randomimport pygamefrom modules import *'''main'''def main(highest_score):# 游戏初始化pygame.init()screen = pygame.display.set_mode(cfg.SCREENS...