def__init__(self, x, y, width, height, color, bg_color, **kwargs): pygame.sprite.Sprite.__init__(self) self.image = pygame.Surface([width, height]) self.image.fill(bg_color) self.image.set_colorkey(bg_color) pygame.draw.ellipse(self.image, color, [0,0, width, height]) self...