9 lines
194 B
Python
9 lines
194 B
Python
|
import pygame
|
||
|
import sys
|
||
|
from sprites.cell import Cell
|
||
|
|
||
|
class House(Cell):
|
||
|
def __init__(self,x,y):
|
||
|
Cell.__init__(self,x,y)
|
||
|
self.image = pygame.image.load("images/house.png")
|