trashbin_class #7

Merged
s462072 merged 4 commits from trashbin_class into master 2022-03-25 11:50:13 +01:00
Showing only changes of commit de18a3ae75 - Show all commits

View File

@ -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