SZI2019SmieciarzWmi/sprites/house.py

10 lines
195 B
Python
Raw Normal View History

2019-03-19 11:47:23 +01:00
import pygame
import sys
from sprites.cell import Cell
class House(Cell):
2019-03-19 11:55:48 +01:00
2019-03-19 11:47:23 +01:00
def __init__(self,x,y):
Cell.__init__(self,x,y)
self.image = pygame.image.load("images/house.png")