add trashbin class

This commit is contained in:
happy531 2022-03-24 17:30:28 +01:00
parent 2194e848fc
commit 4661566f75

19
trashbin.py Normal file
View File

@ -0,0 +1,19 @@
import pygame.image
class trashbin(pygame.sprite.Sprite):
def __init__(self,x,y,img):
super().__init__()
# dimensions
self.width = 16
self.height = 16
# spawn coords
self.x = 0
self.y = 0
# 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()