AttributeError: 'int' object has no attribute '_erase'
问题 I am trying to make a game where you have to avoid objects falling from the sky. I am a beginner programmer (14yrs old) so I make a lot of mistakes. I solve all of them(for this program) but i dont know how to fix this one. The error is in title. Thank you. Full code: from livewires import games, color import random games.init(screen_width = 1280, screen_height = 720, fps = 150) class Covjek(games.Sprite): def update(self): if self.overlapping_sprites: self.destroy() games.screen.quit() self