diff --git a/dump.py b/dump.py new file mode 100644 index 0000000..725eda3 --- /dev/null +++ b/dump.py @@ -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 = [] + + + +