Sztuczna_Inteligencja/path.py
2019-04-16 13:28:11 +02:00

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"