Trashmaster/dump.py
aliaksei-kudravets b4c9ef4447 add dump class
2022-03-25 11:50:26 +01:00

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 = []