15 lines
229 B
Python
15 lines
229 B
Python
|
import pygame.image
|
||
|
|
||
|
class Dump(pygame.sprite.Sprite):
|
||
|
# wysypisko
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
self.glass = []
|
||
|
self.paper = []
|
||
|
self.bio = []
|
||
|
self.other_trash = []
|
||
|
|
||
|
|
||
|
|
||
|
|