SZI2019SmieciarzWmi/sprites/landfill.py

12 lines
317 B
Python
Raw Normal View History

2019-03-19 18:29:18 +01:00
import pygame
import sys
from sprites.cell import Cell
2019-03-19 18:29:18 +01:00
class Landfill(Cell):
def __init__(self, x, y, type):
Cell.__init__(self, x, y)
types = ["plastic", "glass", "metal"]
self.type = types[type]
self.image = pygame.image.load("images/landfill_%s.png" % (self.type))