diff --git a/trashbin.py b/trashbin.py index 9e20948..a580452 100644 --- a/trashbin.py +++ b/trashbin.py @@ -5,13 +5,20 @@ class trashbin(pygame.sprite.Sprite): def __init__(self,x,y,img, type): super().__init__() - # dimensions - self.width = 16 - self.height = 16 - # trashbin type self.type = type + # dimensions + if type == "small": + self.width = 4 + self.height = 4 + elif type == "medium": + self.width = 8 + self.height = 8 + elif type == "large": + self.width = 16 + self.height = 16 + # spawn coords self.x = x self.y = y