def __init__(self, x, y, screen):
pygame.sprite.Sprite.__init__(self)
self.x = x+40
self.y = y-20
self.screen = screen
self.image_path = './plane/bullet-1.gif'
self.image = pygame.image.load(self.image_path)
文章目录