2022-04-23 19:14:23 +02:00
|
|
|
import pygame as pg
|
2022-03-25 11:50:08 +01:00
|
|
|
|
2022-04-23 19:14:23 +02:00
|
|
|
class Dump(pg.sprite.Sprite):
|
2022-03-25 11:50:08 +01:00
|
|
|
# wysypisko
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
|
|
self.glass = []
|
|
|
|
self.paper = []
|
|
|
|
self.bio = []
|
2022-04-23 19:14:23 +02:00
|
|
|
self.other_trash = []
|