from pygame import * import sys from cell import Cell class Grass(Cell): def __init__(x,y): Cell.__init__(self,x,y) self.image = pygame.image.load("/images/grass.png")