11 lines
312 B
Python
11 lines
312 B
Python
|
import pygame
|
||
|
import sys
|
||
|
from sprites.cell import Cell
|
||
|
|
||
|
class Landfill(Cell):
|
||
|
def __init__(self, x, y, type):
|
||
|
types = ["plastic", "glass", "metal"]
|
||
|
self.type = types[type]
|
||
|
Cell.__init__(self,x,y)
|
||
|
self.image = pygame.image.load("images/landfill_%s.png" %(self.type))
|