SZI2019SmieciarzWmi/sprites/grass.py

9 lines
189 B
Python
Raw Normal View History

2019-03-19 10:08:38 +01:00
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")