Trashmaster/game_objects/dump.py

10 lines
220 B
Python
Raw Normal View History

import pygame as pg
2022-03-25 11:50:08 +01: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 = []
self.other_trash = []