Merge pull request 'trashbin_class' (#7) from trashbin_class into master

Reviewed-on: #7
This commit is contained in:
Bartosz Wieczorek 2022-03-25 11:50:13 +01:00
commit 5e43215c3f

29
trashbin.py Normal file
View File

@ -0,0 +1,29 @@
import pygame.image
class trashbin(pygame.sprite.Sprite):
def __init__(self,x,y,img, type):
super().__init__()
# 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
# load trashbin image
self.image = pygame.image.load(img)
self.image = pygame.transform.scale(self.image, (self.x,self.y))
self.rect = self.image.get_rect()