摘要: import pygame class GameSprite(pygame.sprite.Sprite): """飞机大战游戏精灵""" def __init__(self, image_name, speed = 1): # 调用父类的初始化方法 super().__init__() # 定义对象 阅读全文
posted @ 2019-08-30 15:26 才华配得上梦想 阅读(248) 评论(0) 推荐(0) 编辑