SZI2019SmieciarzWmi/sprites/grass.py
2019-03-21 01:25:19 +01:00

10 lines
199 B
Python

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