10 lines
264 B
Python
10 lines
264 B
Python
import pygame
|
|
from gridElement import GridElement
|
|
|
|
|
|
class Path(GridElement):
|
|
def __init__(self, x=None, y=None, game=None):
|
|
GridElement.__init__(self, x, y, game)
|
|
self.image = pygame.image.load("./Images/plytka.png")
|
|
self.type = "path"
|