add dump class

This commit is contained in:
aliaksei-kudravets 2022-03-25 11:50:08 +01:00
parent 70071dd000
commit b4c9ef4447

14
dump.py Normal file
View File

@ -0,0 +1,14 @@
import pygame.image
class Dump(pygame.sprite.Sprite):
# wysypisko
def __init__(self):
super().__init__()
self.glass = []
self.paper = []
self.bio = []
self.other_trash = []