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 4661566f75 - Show all commits

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()